diff --git a/Modules/CIPPCore/Public/Alerts/Get-CIPPAlertExpiringLicenses.ps1 b/Modules/CIPPCore/Public/Alerts/Get-CIPPAlertExpiringLicenses.ps1 index a770812e9c7a..ac0f0c4d9d04 100644 --- a/Modules/CIPPCore/Public/Alerts/Get-CIPPAlertExpiringLicenses.ps1 +++ b/Modules/CIPPCore/Public/Alerts/Get-CIPPAlertExpiringLicenses.ps1 @@ -10,6 +10,7 @@ function Get-CIPPAlertExpiringLicenses { $InputValue, $TenantFilter ) + try { # Parse input parameters - default to 30 days if not specified # Support both old format (direct value) and new format (object with properties) @@ -22,41 +23,52 @@ function Get-CIPPAlertExpiringLicenses { $UnassignedOnly = $false } - $AlertData = Get-CIPPLicenseOverview -TenantFilter $TenantFilter | ForEach-Object { - $UnassignedCount = [int]$_.CountAvailable + $AlertData = @( + Get-CIPPLicenseOverview -TenantFilter $TenantFilter | ForEach-Object { - # If unassigned only filter is enabled, skip licenses with no unassigned units - if ($UnassignedOnly -and $UnassignedCount -le 0) { - return - } + $UnassignedCount = [int]$_.CountAvailable - foreach ($Term in $TermData) { - if ($Term.DaysUntilRenew -lt $DaysThreshold -and $Term.DaysUntilRenew -gt 0) { - $Message = if ($UnassignedOnly) { - "$($_.License) has $UnassignedCount unassigned license(s) expiring in $($Term.DaysUntilRenew) days. The estimated term is $($Term.Term)" - } else { - "$($_.License) will expire in $($Term.DaysUntilRenew) days. The estimated term is $($Term.Term)" - } + # If unassigned only filter is enabled, skip licenses with no unassigned units + if ($UnassignedOnly -and $UnassignedCount -le 0) { + return + } + + # FIX: term rows are in TermInfo on the overview object + $TermData = @($_.TermInfo) - Write-Host $Message - [PSCustomObject]@{ - Message = $Message - License = $_.License - SkuId = $_.skuId - DaysUntilRenew = $Term.DaysUntilRenew - Term = $Term.Term - Status = $Term.Status - TotalLicenses = $Term.TotalLicenses - CountUsed = $_.CountUsed - CountAvailable = $UnassignedCount - NextLifecycle = $Term.NextLifecycle - Tenant = $_.Tenant + foreach ($Term in $TermData) { + $DaysUntilRenew = [int]$Term.DaysUntilRenew + + if ($DaysUntilRenew -lt $DaysThreshold -and $DaysUntilRenew -gt 0) { + + $Message = if ($UnassignedOnly) { + "$($_.License) has $UnassignedCount unassigned license(s) expiring in $DaysUntilRenew days. The estimated term is $($Term.Term)" + } else { + "$($_.License) will expire in $DaysUntilRenew days. The estimated term is $($Term.Term)" + } + + [PSCustomObject]@{ + Message = $Message + License = $_.License + SkuId = $_.skuId + DaysUntilRenew = $DaysUntilRenew + Term = $Term.Term + Status = $Term.Status + TotalLicenses = $Term.TotalLicenses + CountUsed = $_.CountUsed + CountAvailable = $UnassignedCount + NextLifecycle = $Term.NextLifecycle + Tenant = $_.Tenant + } } } } - } + ) + Write-AlertTrace -cmdletName $MyInvocation.MyCommand -tenantFilter $TenantFilter -data $AlertData } catch { + Write-AlertTrace -cmdletName $MyInvocation.MyCommand -tenantFilter $TenantFilter -error $_ + throw } } diff --git a/Modules/CIPPCore/Public/Enable-CIPPMDEConnector.ps1 b/Modules/CIPPCore/Public/Enable-CIPPMDEConnector.ps1 new file mode 100644 index 000000000000..298da51d771e --- /dev/null +++ b/Modules/CIPPCore/Public/Enable-CIPPMDEConnector.ps1 @@ -0,0 +1,151 @@ +function Enable-CIPPMDEConnector { + <# + .SYNOPSIS + Provisions the Microsoft Defender for Endpoint Intune connector for a tenant. + .DESCRIPTION + Checks whether the MDE mobile threat defense connector (partnerState) is already 'available' or 'enabled'. + If not, iterates through regional MDE API portal endpoints until one succeeds, then verifies + the connector state afterwards. Endpoints are ordered so that the tenant's likely region + (based on org countryLetterCode) is tried first. + .PARAMETER TenantFilter + The tenant domain or ID to provision the connector for. + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [Parameter(Mandatory = $true)] + [string]$TenantFilter + ) + + # MDE connector ID is fixed across all tenants + $ConnectorId = 'fc780465-2017-40d4-a0c5-307022471b92' + $ConnectorUri = "https://graph.microsoft.com/beta/deviceManagement/mobileThreatDefenseConnectors/$ConnectorId" + + # All known regional provisioning endpoints + $AllEndpoints = @( + 'mde-rsp-apiportal-prd-eus.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-eus3.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-cus.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-cus3.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-weu.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-weu3.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-neu.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-neu3.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-uks.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-ukw.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-aue.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-aus.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-aec0a.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-aen0a.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-ins0a.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-inc0a.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-sww0a.securitycenter.windows.com' + 'mde-rsp-apiportal-prd-swn0a.securitycenter.windows.com' + ) + + # Country code -> likely regional endpoint prefixes (used to prioritize, not restrict) + $RegionPriority = @{ + 'US' = @('eus', 'eus3', 'cus', 'cus3') + 'CA' = @('eus', 'eus3', 'cus', 'cus3') + 'GB' = @('uks', 'ukw') + 'AU' = @('aue', 'aus', 'aec0a', 'aen0a') + 'IN' = @('ins0a', 'inc0a') + 'SE' = @('sww0a', 'swn0a') + 'DE' = @('weu', 'weu3') + 'FR' = @('weu', 'weu3') + 'NL' = @('weu', 'weu3') + 'BE' = @('weu', 'weu3') + 'AT' = @('weu', 'weu3') + 'CH' = @('weu', 'weu3') + 'IE' = @('neu', 'neu3') + 'FI' = @('neu', 'neu3') + 'NO' = @('neu', 'neu3') + 'DK' = @('neu', 'neu3') + } + + # Check current connector state + try { + $ConnectorState = New-GraphGetRequest -uri $ConnectorUri -tenantid $TenantFilter + } catch { + $ErrorMessage = Get-CippException -Exception $_ + Write-LogMessage -API 'MDEConnector' -tenant $TenantFilter -message "Failed to retrieve MDE connector state. Error: $($ErrorMessage.NormalizedError)" -Sev Error -LogData $ErrorMessage + throw "Failed to retrieve MDE connector state for $TenantFilter. Error: $($ErrorMessage.NormalizedError)" + } + + if ($ConnectorState.partnerState -in @('available', 'enabled')) { + Write-LogMessage -API 'MDEConnector' -tenant $TenantFilter -message 'MDE Intune connector is already in available state.' -Sev Info + return [PSCustomObject]@{ + Success = $true + AlreadyDone = $true + PartnerState = $ConnectorState.partnerState + } + } + + # Build a prioritized endpoint list based on tenant country + $PrioritizedEndpoints = [System.Collections.Generic.List[string]]::new() + try { + $OrgInfo = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/organization' -tenantid $TenantFilter + $CountryCode = $OrgInfo.countryLetterCode + if ($CountryCode -and $RegionPriority.ContainsKey($CountryCode)) { + $PrefixHints = $RegionPriority[$CountryCode] + foreach ($endpoint in $AllEndpoints) { + foreach ($prefix in $PrefixHints) { + if ($endpoint -like "*-prd-$prefix.*") { + $PrioritizedEndpoints.Add($endpoint) + break + } + } + } + } + Write-Information "MDE connector provisioning for $TenantFilter (country: $CountryCode): prioritized $($PrioritizedEndpoints.Count) regional endpoint(s)" + } catch { + Write-Information "Could not retrieve org country for $TenantFilter - will try all endpoints" + } + + # Append remaining endpoints that weren't already prioritized + foreach ($endpoint in $AllEndpoints) { + if ($endpoint -notin $PrioritizedEndpoints) { + $PrioritizedEndpoints.Add($endpoint) + } + } + + # Try each endpoint until one succeeds + $ProvisionBody = '{"timeout":60000}' + $ProvisionScope = 'https://api.securitycenter.windows.com/.default' + $SuccessfulEndpoint = $null + + foreach ($endpoint in $PrioritizedEndpoints) { + $ProvisionUri = "https://$endpoint/api/cloud/portal/onboarding/intune/provision" + try { + Write-Information "Attempting MDE provisioning for $TenantFilter via $endpoint" + $null = New-GraphPOSTRequest -uri $ProvisionUri -tenantid $TenantFilter -body $ProvisionBody -scope $ProvisionScope + $SuccessfulEndpoint = $endpoint + Write-LogMessage -API 'MDEConnector' -tenant $TenantFilter -message "MDE Intune connector provisioned successfully via $endpoint" -Sev Info + break + } catch { + $ErrorMessage = Get-CippException -Exception $_ + Write-Information "Endpoint $endpoint failed for $TenantFilter`: $($ErrorMessage.NormalizedError)" + } + } + + if (-not $SuccessfulEndpoint) { + $Msg = "Failed to provision MDE Intune connector for $TenantFilter - all regional endpoints were unsuccessful." + Write-LogMessage -API 'MDEConnector' -tenant $TenantFilter -message $Msg -Sev Error + throw $Msg + } + + # Verify the connector state after provisioning + try { + $UpdatedState = New-GraphGetRequest -uri $ConnectorUri -tenantid $TenantFilter + } catch { + $UpdatedState = $null + } + + return [PSCustomObject]@{ + Success = $UpdatedState.partnerState -in @('available', 'enabled') + AlreadyDone = $false + Endpoint = $SuccessfulEndpoint + PartnerState = $UpdatedState.partnerState + } +} diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/CIPPDBCache/Push-ExecCIPPDBCache.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/CIPPDBCache/Push-ExecCIPPDBCache.ps1 index ac069351da91..3addac873be0 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/CIPPDBCache/Push-ExecCIPPDBCache.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/CIPPDBCache/Push-ExecCIPPDBCache.ps1 @@ -4,7 +4,11 @@ function Push-ExecCIPPDBCache { Generic wrapper to execute CIPP DB cache functions .DESCRIPTION - Executes the specified Set-CIPPDBCache* function with the provided parameters + Supports two modes: + - Grouped collection: When CollectionType is specified, delegates to Invoke-CIPPDBCacheCollection + which runs all cache functions for that license group sequentially in one activity. + - Single type (legacy): When Name is specified, executes a single Set-CIPPDBCache* function. + Used by the HTTP endpoint for on-demand single-type cache refreshes. .FUNCTIONALITY Entrypoint @@ -12,12 +16,30 @@ function Push-ExecCIPPDBCache { [CmdletBinding()] param($Item) - $Name = $Item.Name $TenantFilter = $Item.TenantFilter $QueueId = $Item.QueueId - $Types = $Item.Types try { + # Grouped collection mode — runs all cache types for a license category in one activity + if ($Item.CollectionType) { + Write-Information "Collecting $($Item.CollectionType) group for tenant $TenantFilter" + + $Params = @{ + CollectionType = $Item.CollectionType + TenantFilter = $TenantFilter + } + if ($QueueId) { $Params.QueueId = $QueueId } + + $Result = Invoke-CIPPDBCacheCollection @Params + + Write-Information "Completed $($Item.CollectionType) group for $TenantFilter - $($Result.Success)/$($Result.Total) succeeded" + return "Successfully executed $($Item.CollectionType) collection for $TenantFilter ($($Result.Success)/$($Result.Total))" + } + + # Single-type mode (legacy) — used by HTTP endpoint for on-demand cache refresh + $Name = $Item.Name + $Types = $Item.Types + Write-Information "Collecting $Name for tenant $TenantFilter" # Build the full function name @@ -53,7 +75,7 @@ function Push-ExecCIPPDBCache { return "Successfully executed $Name for tenant $TenantFilter" } catch { - $ErrorMsg = "Failed to execute $Name for tenant $TenantFilter : $($_.Exception.Message)" + $ErrorMsg = "Failed to execute $(if ($Item.CollectionType) { "$($Item.CollectionType) collection" } else { $Item.Name }) for tenant $TenantFilter : $($_.Exception.Message)" Write-LogMessage -API 'CIPPDBCache' -tenant $TenantFilter -message $ErrorMsg -sev Error throw $ErrorMsg } diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Mailbox Permissions/Push-GetCalendarPermissionsBatch.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Mailbox Permissions/Push-GetCalendarPermissionsBatch.ps1 index 5c98bacd6aec..319a573a21ed 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Mailbox Permissions/Push-GetCalendarPermissionsBatch.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Mailbox Permissions/Push-GetCalendarPermissionsBatch.ps1 @@ -4,7 +4,10 @@ function Push-GetCalendarPermissionsBatch { Process a batch of calendar permission queries .DESCRIPTION - Queries calendar permissions for a batch of mailboxes + Queries calendar permissions for a batch of mailboxes. + Uses a folder name cache to avoid the expensive Get-MailboxFolderStatistics call + on subsequent runs. First run discovers and caches the locale-specific calendar + folder name; all future runs skip that call entirely (50% fewer Exchange requests). .FUNCTIONALITY Entrypoint @@ -19,31 +22,65 @@ function Push-GetCalendarPermissionsBatch { try { Write-Information "Processing calendar permissions batch $BatchNumber of $TotalBatches for tenant $TenantFilter with $($Mailboxes.Count) mailboxes" + # Load cached calendar folder names for this tenant + $FolderCacheTable = Get-CippTable -tablename 'CalendarFolderCache' + $CachedFolders = @{} + try { + + $CacheEntries = Get-CIPPAzDataTableEntity @FolderCacheTable -Filter "PartitionKey eq '$TenantFilter'" + foreach ($Entry in $CacheEntries) { + $CachedFolders[$Entry.RowKey] = $Entry.FolderName + } + Write-Host "CAL Cached Folders count is $($CachedFolders.count)" + } catch { + Write-Information "Could not load folder name cache for $TenantFilter, will discover all folder names" + } + + $CacheHits = 0 + $CacheMisses = 0 + $NewCacheEntries = [System.Collections.Generic.List[hashtable]]::new() $AllCalendarPermissions = [System.Collections.Generic.List[object]]::new() foreach ($MailboxUPN in $Mailboxes) { try { - # Step 1: Get the calendar folder name (locale-specific) - $GetCalParam = @{Identity = $MailboxUPN; FolderScope = 'Calendar' } - $CalendarFolder = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Get-MailboxFolderStatistics' -anchor $MailboxUPN -cmdParams $GetCalParam | Select-Object -First 1 - - if ($CalendarFolder -and $CalendarFolder.name) { - # Step 2: Get calendar permissions using the folder name - $CalParam = @{Identity = "$($MailboxUPN):\$($CalendarFolder.name)" } - $CalendarPermissions = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Get-MailboxFolderPermission' -anchor $MailboxUPN -cmdParams $CalParam -UseSystemMailbox $true - - # Normalize the results - foreach ($Perm in $CalendarPermissions) { - $AllCalendarPermissions.Add([PSCustomObject]@{ - id = [guid]::NewGuid().ToString() - Identity = $Perm.Identity - User = $Perm.User - AccessRights = $Perm.AccessRights - FolderName = $Perm.FolderName + # Check cache for folder name + $FolderName = $CachedFolders[$MailboxUPN] + + if (-not $FolderName) { + # Cache miss — discover the locale-specific calendar folder name + $CacheMisses++ + $GetCalParam = @{Identity = $MailboxUPN; FolderScope = 'Calendar' } + $CalendarFolder = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Get-MailboxFolderStatistics' -anchor $MailboxUPN -cmdParams $GetCalParam | Select-Object -First 1 + + if ($CalendarFolder -and $CalendarFolder.name) { + $FolderName = $CalendarFolder.name + # Queue for cache write + $NewCacheEntries.Add(@{ + PartitionKey = $TenantFilter + RowKey = $MailboxUPN + FolderName = $FolderName }) + } else { + Write-Information "No calendar folder found for mailbox $MailboxUPN" + continue } } else { - Write-Information "No calendar folder found for mailbox $MailboxUPN" + $CacheHits++ + } + + # Get calendar permissions using the folder name + $CalParam = @{Identity = "$($MailboxUPN):\$($FolderName)" } + $CalendarPermissions = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Get-MailboxFolderPermission' -anchor $MailboxUPN -cmdParams $CalParam -UseSystemMailbox $true + + # Normalize the results + foreach ($Perm in $CalendarPermissions) { + $AllCalendarPermissions.Add([PSCustomObject]@{ + id = [guid]::NewGuid().ToString() + Identity = $Perm.Identity + User = $Perm.User + AccessRights = $Perm.AccessRights + FolderName = $Perm.FolderName + }) } } catch { Write-Information "Failed to get calendar permissions for $MailboxUPN : $($_.Exception.Message)" @@ -51,7 +88,17 @@ function Push-GetCalendarPermissionsBatch { } } - Write-Information "Completed calendar permissions batch $BatchNumber of $TotalBatches - processed $($Mailboxes.Count) mailboxes: $($AllCalendarPermissions.Count) calendar permissions" + # Persist newly discovered folder names to cache + if ($NewCacheEntries.Count -gt 0) { + try { + Add-CIPPAzDataTableEntity @FolderCacheTable -Entity $NewCacheEntries -Force + Write-Information "Cached $($NewCacheEntries.Count) new calendar folder names for $TenantFilter" + } catch { + Write-Information "Failed to write folder name cache for $TenantFilter : $($_.Exception.Message)" + } + } + + Write-Information "Completed calendar permissions batch $BatchNumber of $TotalBatches - processed $($Mailboxes.Count) mailboxes: $($AllCalendarPermissions.Count) permissions (cache hits: $CacheHits, misses: $CacheMisses)" # Return results grouped by command type for consistency with mailbox permissions return @{ diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPDBCacheData.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPDBCacheData.ps1 index f3f1d954fccc..e12222b5b037 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPDBCacheData.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPDBCacheData.ps1 @@ -4,7 +4,13 @@ function Push-CIPPDBCacheData { List cache collection tasks for a single tenant (Phase 1 of fan-out/fan-in) .DESCRIPTION - Checks tenant license capabilities and returns a list of cache collection work items. + Checks tenant license capabilities and returns a list of grouped cache collection work items. + Each item represents one collection type (Graph, ExchangeConfig, ExchangeData, etc.) that + will run all its cache functions sequentially within a single activity invocation. + + This grouped approach reduces activity count from ~50-67 per tenant down to ~2-6 per tenant, + dramatically cutting orchestrator replay overhead and table storage I/O. + Does NOT start sub-orchestrators. The returned items are aggregated by the PostExecution function (CIPPDBCacheApplyBatch) and executed in a single flat orchestrator. @@ -26,160 +32,93 @@ function Push-CIPPDBCacheData { Write-Information "License capabilities for $TenantFilter - Intune: $IntuneCapable, CA: $ConditionalAccessCapable, P2: $AzureADPremiumP2Capable, Exchange: $ExchangeCapable" - # Build list of cache collection tasks based on license capabilities + # Build grouped collection tasks — one activity per license category instead of one per cache type $Tasks = [System.Collections.Generic.List[object]]::new() - #region All Licenses - Basic tenant data collection - $BasicCacheFunctions = @( - 'Users' - 'Groups' - 'Guests' - 'ServicePrincipals' - 'Apps' - 'Devices' - 'Organization' - 'Roles' - 'AdminConsentRequestPolicy' - 'AuthorizationPolicy' - 'AuthenticationMethodsPolicy' - 'DeviceSettings' - 'DirectoryRecommendations' - 'CrossTenantAccessPolicy' - 'DefaultAppManagementPolicy' - 'Settings' - 'SecureScore' - 'PIMSettings' - 'Domains' - 'B2BManagementPolicy' - 'DeviceRegistrationPolicy' - 'OAuth2PermissionGrants' - 'AppRoleAssignments' - 'LicenseOverview' - 'MFAState' - 'BitlockerKeys' - ) + # Graph collection always runs (no special license needed) — 25 cache types in one activity + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'Graph' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache Graph - $TenantFilter" + }) + # MFAState runs as its own activity — it makes 6+ API calls, bulk group/role member + # resolution, and O(users × policies) CPU work that can take minutes on large tenants + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + Name = 'MFAState' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache MFAState - $TenantFilter" + }) - foreach ($CacheFunction in $BasicCacheFunctions) { + # Exchange collections — split into config (quick policy calls), data (usage reports), and mailboxes (heavy, spawns permission/rule child orchestrators) + if ($ExchangeCapable) { + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'ExchangeConfig' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache ExchangeConfig - $TenantFilter" + }) + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'ExchangeData' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache ExchangeData - $TenantFilter" + }) + # Mailboxes runs as its own activity — it's heavy (fetches all mailboxes) and spawns + # child orchestrators for permission/calendar/rules batching that need their own time $Tasks.Add(@{ FunctionName = 'ExecCIPPDBCache' - Name = $CacheFunction + Name = 'Mailboxes' TenantFilter = $TenantFilter QueueId = $QueueId + QueueName = "DB Cache Mailboxes - $TenantFilter" }) - } - #endregion All Licenses - - #region Exchange Licensed - Exchange Online features - if ($ExchangeCapable) { - $ExchangeCacheFunctions = @( - 'ExoAntiPhishPolicies' - 'ExoMalwareFilterPolicies' - 'ExoSafeLinksPolicies' - 'ExoSafeAttachmentPolicies' - 'ExoTransportRules' - 'ExoDkimSigningConfig' - 'ExoOrganizationConfig' - 'ExoAcceptedDomains' - 'ExoHostedContentFilterPolicy' - 'ExoHostedOutboundSpamFilterPolicy' - 'ExoAntiPhishPolicy' - 'ExoSafeLinksPolicy' - 'ExoSafeAttachmentPolicy' - 'ExoMalwareFilterPolicy' - 'ExoAtpPolicyForO365' - 'ExoQuarantinePolicy' - 'ExoRemoteDomain' - 'ExoSharingPolicy' - 'ExoAdminAuditLogConfig' - 'ExoPresetSecurityPolicy' - 'ExoTenantAllowBlockList' - 'Mailboxes' - 'CASMailboxes' - 'MailboxUsage' - 'OneDriveUsage' - ) - - foreach ($CacheFunction in $ExchangeCacheFunctions) { - $Tasks.Add(@{ - FunctionName = 'ExecCIPPDBCache' - Name = $CacheFunction - TenantFilter = $TenantFilter - QueueId = $QueueId - }) - } } else { Write-Host "Skipping Exchange Online data collection for $TenantFilter - no required license" } - #endregion Exchange Licensed - #region Conditional Access Licensed - Azure AD Premium features if ($ConditionalAccessCapable) { - $ConditionalAccessCacheFunctions = @( - 'ConditionalAccessPolicies' - #'AuthenticationFlowsPolicy' - 'CredentialUserRegistrationDetails' - 'UserRegistrationDetails' - ) - foreach ($CacheFunction in $ConditionalAccessCacheFunctions) { - $Tasks.Add(@{ - FunctionName = 'ExecCIPPDBCache' - Name = $CacheFunction - TenantFilter = $TenantFilter - QueueId = $QueueId - }) - } + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'ConditionalAccess' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache ConditionalAccess - $TenantFilter" + }) } else { Write-Host "Skipping Conditional Access data collection for $TenantFilter - no required license" } - #endregion Conditional Access Licensed - #region Azure AD Premium P2 - Identity Protection/PIM features if ($AzureADPremiumP2Capable) { - $P2CacheFunctions = @( - 'RiskyUsers' - 'RiskyServicePrincipals' - 'ServicePrincipalRiskDetections' - 'RiskDetections' - 'RoleEligibilitySchedules' - 'RoleAssignmentScheduleInstances' - 'RoleManagementPolicies' - ) - foreach ($CacheFunction in $P2CacheFunctions) { - $Tasks.Add(@{ - FunctionName = 'ExecCIPPDBCache' - Name = $CacheFunction - TenantFilter = $TenantFilter - QueueId = $QueueId - }) - } + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'IdentityProtection' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache IdentityProtection - $TenantFilter" + }) } else { Write-Host "Skipping Azure AD Premium P2 data collection for $TenantFilter - no required license" } - #endregion Azure AD Premium P2 - #region Intune Licensed - Intune management features if ($IntuneCapable) { - $IntuneCacheFunctions = @( - 'ManagedDevices' - 'IntunePolicies' - 'ManagedDeviceEncryptionStates' - 'IntuneAppProtectionPolicies' - 'DetectedApps' - ) - foreach ($CacheFunction in $IntuneCacheFunctions) { - $Tasks.Add(@{ - FunctionName = 'ExecCIPPDBCache' - Name = $CacheFunction - TenantFilter = $TenantFilter - QueueId = $QueueId - }) - } + $Tasks.Add(@{ + FunctionName = 'ExecCIPPDBCache' + CollectionType = 'Intune' + TenantFilter = $TenantFilter + QueueId = $QueueId + QueueName = "DB Cache Intune - $TenantFilter" + }) } else { Write-Host "Skipping Intune data collection for $TenantFilter - no required license" } - #endregion Intune Licensed - Write-Information "Built $($Tasks.Count) cache tasks for tenant $TenantFilter" + Write-Information "Built $($Tasks.Count) grouped cache tasks for tenant $TenantFilter (down from individual per-type tasks)" # Return the task list — the PostExecution function will aggregate and start a flat orchestrator return @($Tasks) diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-AddDefenderDeployment.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-AddDefenderDeployment.ps1 index efa9cddcd24b..f5a9b6d7609a 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-AddDefenderDeployment.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-AddDefenderDeployment.ps1 @@ -11,7 +11,6 @@ function Invoke-AddDefenderDeployment { $APIName = $Request.Params.CIPPEndpoint $Headers = $Request.Headers - $Tenants = ($Request.Body.selectedTenants).value if ('AllTenants' -in $Tenants) { $Tenants = (Get-Tenants -IncludeErrors).defaultDomainName } $Compliance = $Request.Body.Compliance @@ -22,6 +21,15 @@ function Invoke-AddDefenderDeployment { $Results = foreach ($tenant in $Tenants) { try { if ($Compliance) { + $ConnectorStatus = Enable-CIPPMDEConnector -TenantFilter $tenant + if (!$ConnectorStatus.Success) { + "$($tenant): Failed to enable MDE Connector - $($ConnectorStatus.ErrorMessage)" + continue + } else { + "$($tenant): MDE Connector is $($ConnectorStatus.PartnerState)" + } + + $SettingsObject = @{ id = 'fc780465-2017-40d4-a0c5-307022471b92' androidEnabled = [bool]$Compliance.ConnectAndroid @@ -32,29 +40,44 @@ function Invoke-AddDefenderDeployment { partnerUnresponsivenessThresholdInDays = 7 allowPartnerToCollectIOSApplicationMetadata = [bool]$Compliance.ConnectIosCompliance allowPartnerToCollectIOSPersonalApplicationMetadata = [bool]$Compliance.ConnectIosCompliance + androidDeviceBlockedOnMissingPartnerData = [bool]$Compliance.androidDeviceBlockedOnMissingPartnerData + iosDeviceBlockedOnMissingPartnerData = [bool]$Compliance.iosDeviceBlockedOnMissingPartnerData + windowsDeviceBlockedOnMissingPartnerData = [bool]$Compliance.windowsDeviceBlockedOnMissingPartnerData + macDeviceBlockedOnMissingPartnerData = [bool]$Compliance.macDeviceBlockedOnMissingPartnerData androidMobileApplicationManagementEnabled = [bool]$Compliance.ConnectAndroidCompliance iosMobileApplicationManagementEnabled = [bool]$Compliance.appSync + windowsMobileApplicationManagementEnabled = [bool]$Compliance.windowsMobileApplicationManagementEnabled + allowPartnerToCollectIosCertificateMetadata = [bool]$Compliance.allowPartnerToCollectIosCertificateMetadata + allowPartnerToCollectIosPersonalCertificateMetadata = [bool]$Compliance.allowPartnerToCollectIosPersonalCertificateMetadata microsoftDefenderForEndpointAttachEnabled = [bool]$true } $SettingsObj = $SettingsObject | ConvertTo-Json -Compress + $ConnectorUri = 'https://graph.microsoft.com/beta/deviceManagement/mobileThreatDefenseConnectors/fc780465-2017-40d4-a0c5-307022471b92' + $ConnectorExists = $false + $SettingsMatch = $false try { - $ExistingSettings = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/deviceManagement/mobileThreatDefenseConnectors/fc780465-2017-40d4-a0c5-307022471b92' -tenantid $tenant + $ExistingSettings = New-GraphGETRequest -uri $ConnectorUri -tenantid $tenant + $ConnectorExists = $true # Check if any setting doesn't match + $SettingsMatch = $true foreach ($key in $SettingsObject.Keys) { if ($ExistingSettings.$key -ne $SettingsObject[$key]) { - $ExistingSettings = $false + $SettingsMatch = $false break } } } catch { - $ExistingSettings = $false + $ConnectorExists = $false } - if ($ExistingSettings) { + if ($SettingsMatch) { "Defender Intune Configuration already correct and active for $($tenant). Skipping" + } elseif ($ConnectorExists) { + $null = New-GraphPOSTRequest -uri $ConnectorUri -tenantid $tenant -type PATCH -body $SettingsObj -AsApp $true + "$($tenant): Successfully updated Defender Compliance and Reporting settings." } else { $null = New-GraphPOSTRequest -uri 'https://graph.microsoft.com/beta/deviceManagement/mobileThreatDefenseConnectors/' -tenantid $tenant -type POST -body $SettingsObj -AsApp $true - "$($tenant): Successfully set Defender Compliance and Reporting settings. Please remember to enable the Intune Connector in the Defender portal." + "$($tenant): Successfully created Defender Compliance and Reporting settings." } } diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUser.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUser.ps1 index d00439f6d36c..8aa000b48019 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUser.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUser.ps1 @@ -61,7 +61,11 @@ function Invoke-AddUser { $body = [pscustomobject] @{ 'Results' = @( $CreationResults.Results[0], - $CreationResults.Results[1], + @{ + 'resultText' = $CreationResults.Results[1] + 'copyField' = $CreationResults.Username + 'state' = 'success' + }, @{ 'resultText' = $CreationResults.Results[2] 'copyField' = $CreationResults.password diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserDefaults.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserDefaults.ps1 index cb59b07113b2..63e6e2b50cfc 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserDefaults.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserDefaults.ps1 @@ -106,8 +106,8 @@ function Invoke-AddUserDefaults { copyFrom = $CopyFrom } - # Generate GUID for the template - $GUID = (New-Guid).GUID + # Use existing GUID if editing, otherwise generate new one + $GUID = if ($Request.Body.GUID) { $Request.Body.GUID } else { (New-Guid).GUID } # Convert to JSON $JSON = ConvertTo-Json -InputObject $TemplateObject -Depth 100 -Compress @@ -122,7 +122,8 @@ function Invoke-AddUserDefaults { GUID = "$GUID" } - $Result = "Created User Default Template '$($TemplateName)' with GUID $GUID" + $Action = if ($Request.Body.GUID) { 'Updated' } else { 'Created' } + $Result = "$Action User Default Template '$($TemplateName)' with GUID $GUID" Write-LogMessage -headers $Headers -API $APIName -message $Result -Sev 'Info' $StatusCode = [HttpStatusCode]::OK diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ExecJITAdmin.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ExecJITAdmin.ps1 index 15728f58e429..c8a44a162f8b 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ExecJITAdmin.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ExecJITAdmin.ps1 @@ -183,7 +183,14 @@ function Invoke-ExecJITAdmin { 'UserPrincipalName' = $Username } Roles = $Request.Body.AdminRoles.value - Action = 'AddRoles' + Groups = $Request.Body.GroupMemberships.value + Action = if ($Request.Body.AdminRoles.value -and $Request.Body.GroupMemberships.value) { + 'AddRolesAndGroups' + } elseif ($Request.Body.GroupMemberships.value) { + 'AddGroups' + } else { + 'AddRoles' + } Reason = $Request.Body.Reason Expiration = $Expiration StartDate = $Start @@ -238,6 +245,7 @@ function Invoke-ExecJITAdmin { 'UserPrincipalName' = $Username } Roles = $Request.Body.AdminRoles.value + Groups = $Request.Body.GroupMemberships.value Reason = $Request.Body.Reason Action = $Request.Body.ExpireAction.value } diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ListJITAdmin.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ListJITAdmin.ps1 index 713f40769a01..e46123a300af 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ListJITAdmin.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-ListJITAdmin.ps1 @@ -32,7 +32,7 @@ $BulkRequests.Add(@{ id = $User.id method = 'GET' - url = "users/$($User.id)/memberOf/microsoft.graph.directoryRole/?`$select=id,displayName" + url = "users/$($User.id)/memberOf?`$select=id,displayName" }) } $RoleResults = New-GraphBulkRequest -tenantid $TenantFilter -Requests @($BulkRequests) diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Security/Invoke-ExecIncidentsList.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Security/Invoke-ExecIncidentsList.ps1 index e0a91cfe8dbb..dc4c5cb27860 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Security/Invoke-ExecIncidentsList.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Security/Invoke-ExecIncidentsList.ps1 @@ -9,11 +9,25 @@ function Invoke-ExecIncidentsList { param($Request, $TriggerMetadata) # Interact with query parameters or the body of the request. $TenantFilter = $Request.Query.tenantFilter + $StartDate = $Request.Query.StartDate # YYYYMMDD or null + $EndDate = $Request.Query.EndDate # YYYYMMDD or null + + # Build OData $filter parts for Graph API (single-tenant path) + $GraphFilterParts = [System.Collections.Generic.List[string]]::new() + if ($StartDate) { + $GraphFilterParts.Add("createdDateTime ge $([datetime]::ParseExact($StartDate,'yyyyMMdd',$null).ToString('yyyy-MM-ddT00:00:00Z'))") + } + if ($EndDate) { + $GraphFilterParts.Add("createdDateTime le $([datetime]::ParseExact($EndDate,'yyyyMMdd',$null).ToString('yyyy-MM-ddT23:59:59Z'))") + } + $GraphODataFilter = if ($GraphFilterParts.Count -gt 0) { '$filter=' + ($GraphFilterParts -join ' and ') } else { $null } try { $GraphRequest = if ($TenantFilter -ne 'AllTenants') { # Single tenant functionality - $Incidents = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/security/incidents' -tenantid $TenantFilter -AsApp $true + $IncidentsUri = 'https://graph.microsoft.com/beta/security/incidents' + if ($GraphODataFilter) { $IncidentsUri = "$IncidentsUri`?$GraphODataFilter" } + $Incidents = New-GraphGetRequest -uri $IncidentsUri -tenantid $TenantFilter -AsApp $true foreach ($incident in $Incidents) { [PSCustomObject]@{ @@ -29,7 +43,7 @@ function Invoke-ExecIncidentsList { Classification = $incident.classification Determination = $incident.determination Severity = $incident.severity - Tags = ($IncidentObj.tags -join ', ') + Tags = ($incident.tags -join ', ') Comments = $incident.comments } } @@ -75,6 +89,10 @@ function Invoke-ExecIncidentsList { $Incidents = $Rows foreach ($incident in $Incidents) { $IncidentObj = $incident.Incident | ConvertFrom-Json + # In-memory date filter for cached AllTenants data + $created = [datetime]::Parse($IncidentObj.createdDateTime) + if ($StartDate -and $created -lt [datetime]::ParseExact($StartDate, 'yyyyMMdd', $null)) { continue } + if ($EndDate -and $created -ge [datetime]::ParseExact($EndDate, 'yyyyMMdd', $null).AddDays(1)) { continue } [PSCustomObject]@{ Tenant = $incident.Tenant Id = $IncidentObj.id diff --git a/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-CIPPOrchestrator.ps1 b/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-CIPPOrchestrator.ps1 index bbc88f160553..ef944134eef3 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-CIPPOrchestrator.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-CIPPOrchestrator.ps1 @@ -38,7 +38,7 @@ function Start-CIPPOrchestrator { # If already running in processor context (e.g., timer trigger) and we have an InputObject, # start orchestration directly without queuing - $OrchestratorTriggerDisabled = $env:AzureWebJobs_CIPPOrchestrator_Disabled -eq 'true' -or $env:AzureWebJobs_CIPPOrchestrator_Disabled -eq '1' + $OrchestratorTriggerDisabled = $env:AzureWebJobs_CIPPOrchestrator_Disabled -in @('true', '1') -or [System.Environment]::GetEnvironmentVariable('AzureWebJobs.CIPPOrchestrator.Disabled') -in @('true', '1') if ($InputObject -and -not $OrchestratorTriggerDisabled) { Write-Information 'Running in processor context - starting orchestration directly' diff --git a/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 index be328974d1e2..d0264d501bff 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 @@ -110,6 +110,7 @@ function New-GraphGetRequest { StatusCode = $Data.StatusCode StatusDescription = $Data.StatusDescription Content = $Content + Headers = $Data.Headers } $nextURL = $null } elseif ($CountOnly) { diff --git a/Modules/CIPPCore/Public/GraphHelper/Set-CIPPOffloadFunctionTriggers.ps1 b/Modules/CIPPCore/Public/GraphHelper/Set-CIPPOffloadFunctionTriggers.ps1 index 48d155353998..ad9995541c28 100644 --- a/Modules/CIPPCore/Public/GraphHelper/Set-CIPPOffloadFunctionTriggers.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/Set-CIPPOffloadFunctionTriggers.ps1 @@ -65,7 +65,7 @@ function Set-CIPPOffloadFunctionTriggers { $SettingKey = "AzureWebJobs.$Trigger.Disabled" # Convert setting key to environment variable format (dots become underscores) $EnvVarName = $SettingKey -replace '\.', '_' - $CurrentValue = [System.Environment]::GetEnvironmentVariable($EnvVarName) + $CurrentValue = [System.Environment]::GetEnvironmentVariable($SettingKey) ?? [System.Environment]::GetEnvironmentVariable($EnvVarName) if ($CurrentValue -eq '1') { Write-Verbose "Skipping $SettingKey - already set to 1" @@ -96,7 +96,7 @@ function Set-CIPPOffloadFunctionTriggers { $SettingKey = "AzureWebJobs.$Trigger.Disabled" # Convert setting key to environment variable format (dots become underscores) $EnvVarName = $SettingKey -replace '\.', '_' - $CurrentValue = [System.Environment]::GetEnvironmentVariable($EnvVarName) + $CurrentValue = [System.Environment]::GetEnvironmentVariable($SettingKey) ?? [System.Environment]::GetEnvironmentVariable($EnvVarName) if ([string]::IsNullOrEmpty($CurrentValue) -or $CurrentValue -ne '1') { Write-Verbose "Skipping $SettingKey - already enabled or not set" diff --git a/Modules/CIPPCore/Public/Invoke-CIPPDBCacheCollection.ps1 b/Modules/CIPPCore/Public/Invoke-CIPPDBCacheCollection.ps1 new file mode 100644 index 000000000000..0cfeb492af04 --- /dev/null +++ b/Modules/CIPPCore/Public/Invoke-CIPPDBCacheCollection.ps1 @@ -0,0 +1,185 @@ +function Invoke-CIPPDBCacheCollection { + <# + .SYNOPSIS + Execute a grouped collection of DB cache functions for a tenant + + .DESCRIPTION + Runs all Set-CIPPDBCache* functions belonging to a collection type sequentially + within a single invocation. This reduces orchestrator activity count by ~10x + compared to individual per-type activities, eliminating replay overhead. + + Collection types map to license categories: + - Graph: Core tenant data (no special license needed) + - ExchangeConfig: Exchange Online policy/config data + - ExchangeData: Mailboxes, CAS mailboxes, usage reports + - ConditionalAccess: CA policies and registration details + - IdentityProtection: Risky users/SPs, risk detections, PIM + - Intune: Managed devices, policies, app protection + + .PARAMETER CollectionType + The group of cache functions to execute + + .PARAMETER TenantFilter + The tenant domain to collect data for + + .PARAMETER QueueId + Optional queue ID for progress tracking + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [Parameter(Mandatory = $true)] + [ValidateSet('Graph', 'ExchangeConfig', 'ExchangeData', 'ConditionalAccess', 'IdentityProtection', 'Intune')] + [string]$CollectionType, + + [Parameter(Mandatory = $true)] + [string]$TenantFilter, + + [string]$QueueId + ) + + # Canonical collection definitions — single source of truth for grouping + $Collections = @{ + Graph = @( + 'Users' + 'Groups' + 'Guests' + 'ServicePrincipals' + 'Apps' + 'Devices' + 'Organization' + 'Roles' + 'AdminConsentRequestPolicy' + 'AuthorizationPolicy' + 'AuthenticationMethodsPolicy' + 'DeviceSettings' + 'DirectoryRecommendations' + 'CrossTenantAccessPolicy' + 'DefaultAppManagementPolicy' + 'Settings' + 'SecureScore' + 'PIMSettings' + 'Domains' + 'B2BManagementPolicy' + 'DeviceRegistrationPolicy' + 'OAuth2PermissionGrants' + 'AppRoleAssignments' + 'LicenseOverview' + 'BitlockerKeys' + ) + ExchangeConfig = @( + 'ExoAntiPhishPolicies' + 'ExoMalwareFilterPolicies' + 'ExoSafeLinksPolicies' + 'ExoSafeAttachmentPolicies' + 'ExoTransportRules' + 'ExoDkimSigningConfig' + 'ExoOrganizationConfig' + 'ExoAcceptedDomains' + 'ExoHostedContentFilterPolicy' + 'ExoHostedOutboundSpamFilterPolicy' + 'ExoAntiPhishPolicy' + 'ExoSafeLinksPolicy' + 'ExoSafeAttachmentPolicy' + 'ExoMalwareFilterPolicy' + 'ExoAtpPolicyForO365' + 'ExoQuarantinePolicy' + 'ExoRemoteDomain' + 'ExoSharingPolicy' + 'ExoAdminAuditLogConfig' + 'ExoPresetSecurityPolicy' + 'ExoTenantAllowBlockList' + ) + ExchangeData = @( + 'CASMailboxes' + 'MailboxUsage' + 'OneDriveUsage' + ) + ConditionalAccess = @( + 'ConditionalAccessPolicies' + 'CredentialUserRegistrationDetails' + 'UserRegistrationDetails' + ) + IdentityProtection = @( + 'RiskyUsers' + 'RiskyServicePrincipals' + 'ServicePrincipalRiskDetections' + 'RiskDetections' + 'RoleEligibilitySchedules' + 'RoleAssignmentScheduleInstances' + 'RoleManagementPolicies' + ) + Intune = @( + 'ManagedDevices' + 'IntunePolicies' + 'ManagedDeviceEncryptionStates' + 'IntuneAppProtectionPolicies' + 'DetectedApps' + ) + } + + $CacheTypes = $Collections[$CollectionType] + if (-not $CacheTypes -or $CacheTypes.Count -eq 0) { + throw "Unknown or empty collection type: $CollectionType" + } + + Write-Information "Starting $CollectionType collection for $TenantFilter ($($CacheTypes.Count) cache types)" + + $CollectionStopwatch = [System.Diagnostics.Stopwatch]::StartNew() + $SuccessCount = 0 + $FailedCount = 0 + $Errors = [System.Collections.Generic.List[string]]::new() + $Timings = [System.Collections.Generic.List[string]]::new() + + foreach ($CacheType in $CacheTypes) { + $FullFunctionName = "Set-CIPPDBCache$CacheType" + $ItemStopwatch = [System.Diagnostics.Stopwatch]::StartNew() + try { + $Function = Get-Command -Name $FullFunctionName -ErrorAction SilentlyContinue + if (-not $Function) { + throw "Function $FullFunctionName not found" + } + + $Params = @{ TenantFilter = $TenantFilter } + if ($QueueId) { $Params.QueueId = $QueueId } + + Write-Information " [$CollectionType] Collecting $CacheType for $TenantFilter" + & $FullFunctionName @Params + $ItemStopwatch.Stop() + $ElapsedSeconds = [math]::Round($ItemStopwatch.Elapsed.TotalSeconds, 3) + $Timings.Add("$CacheType : ${ElapsedSeconds}s") + Write-Information " [$CollectionType] Completed $CacheType for $TenantFilter - Took ${ElapsedSeconds} seconds" + $SuccessCount++ + } catch { + $ItemStopwatch.Stop() + $ElapsedSeconds = [math]::Round($ItemStopwatch.Elapsed.TotalSeconds, 3) + $FailedCount++ + $Errors.Add("$CacheType : $($_.Exception.Message)") + $Timings.Add("$CacheType : ${ElapsedSeconds}s (FAILED)") + Write-Warning " [$CollectionType] Failed $CacheType for $TenantFilter after ${ElapsedSeconds} seconds: $($_.Exception.Message)" + } + } + + $CollectionStopwatch.Stop() + $TotalElapsed = [math]::Round($CollectionStopwatch.Elapsed.TotalSeconds, 3) + $Summary = "$CollectionType collection for $TenantFilter completed in ${TotalElapsed} seconds - $SuccessCount succeeded, $FailedCount failed out of $($CacheTypes.Count)" + Write-Information $Summary + Write-Information " Timings: $($Timings -join ' | ')" + + if ($FailedCount -gt 0) { + Write-LogMessage -API 'CIPPDBCache' -tenant $TenantFilter -message "$Summary. Errors: $($Errors -join '; ')" -sev Warning + } + + return @{ + CollectionType = $CollectionType + TenantFilter = $TenantFilter + Success = $SuccessCount + Failed = $FailedCount + Total = $CacheTypes.Count + TotalSeconds = $TotalElapsed + Timings = @($Timings) + Errors = @($Errors) + } +} diff --git a/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 b/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 index c26f0f2254e8..5965003d9ec5 100644 --- a/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 +++ b/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 @@ -73,7 +73,7 @@ function Send-CIPPAlert { } catch { $ErrorMessage = Get-CippException -Exception $_ Write-Information "Could not send webhook alert to email: $($ErrorMessage.NormalizedError)" - Write-LogMessage -API 'Webhook Alerts' -message "Could not send webhook alerts to email. $($ErrorMessage.NormalizedError)" -tenant $TenantFilter -sev Error -LogData $ErrorMessage + Write-LogMessage -API 'Webhook Alerts' -message "Could not send webhook alerts to email. $($_.Exception.Message)" -tenant $TenantFilter -sev Error -LogData $ErrorMessage return "Could not send webhook alert to email: $($ErrorMessage.NormalizedError)" } } @@ -122,13 +122,13 @@ function Send-CIPPAlert { $TeamsBody = [PSCustomObject]@{ text = "You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log.

$ReplacedContent" } | ConvertTo-Json -Compress - Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $TeamsBody + $WebhookResponse = Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $TeamsBody -StatusCodeVariable WebhookStatusCode -SkipHttpErrorCheck } '*discord.com*' { $DiscordBody = [PSCustomObject]@{ content = "You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log. ``````$ReplacedContent``````" } | ConvertTo-Json -Compress - Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $DiscordBody + $WebhookResponse = Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $DiscordBody -StatusCodeVariable WebhookStatusCode -SkipHttpErrorCheck } '*slack.com*' { $SlackBlocks = Get-SlackAlertBlocks -JSONBody $JSONContent @@ -139,32 +139,46 @@ function Send-CIPPAlert { text = "You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log. ``````$ReplacedContent``````" } | ConvertTo-Json -Compress } - Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $SlackBody + $WebhookResponse = Invoke-RestMethod -Uri $webhook -Method POST -ContentType 'Application/json' -Body $SlackBody -StatusCodeVariable WebhookStatusCode -SkipHttpErrorCheck } default { $RestMethod = @{ - Uri = $webhook - Method = 'POST' - ContentType = 'application/json' - Body = $ReplacedContent + Uri = $webhook + Method = 'POST' + ContentType = 'application/json' + Body = $ReplacedContent + StatusCodeVariable = 'WebhookStatusCode' + SkipHttpErrorCheck = $true } if ($Headers) { $RestMethod['Headers'] = $Headers } - Invoke-RestMethod @RestMethod + $WebhookResponse = Invoke-RestMethod @RestMethod } } } - Write-LogMessage -API 'Webhook Alerts' -message "Sent Webhook alert $title to External webhook" -tenant $TenantFilter -sev info + $LogData = @{ + WebhookUrl = $webhook + StatusCode = $WebhookStatusCode + Response = $WebhookResponse + } + if ($WebhookStatusCode -ge 200 -and $WebhookStatusCode -lt 300) { + Write-LogMessage -API 'Webhook Alerts' -message "Sent Webhook alert $title to External webhook. Status code: $WebhookStatusCode" -tenant $TenantFilter -sev info -LogData $LogData + return "Sent webhook to $webhook with status code: $WebhookStatusCode" + } else { + Write-LogMessage -API 'Webhook Alerts' -message "Webhook alert $title failed. $WebhookResponse" -tenant $TenantFilter -sev error -LogData $LogData + return "Error: Webhook returned status code $WebhookStatusCode for $webhook - Response: $WebhookResponse" + } } else { Write-LogMessage -API 'Webhook Alerts' -message 'No webhook URL configured' -sev warning } } catch { - $ErrorMessage = Get-CippException -Exception $_ - Write-Information "Could not send alerts to webhook: $($ErrorMessage.NormalizedError)" - Write-LogMessage -API 'Webhook Alerts' -message "Could not send alerts to webhook: $($ErrorMessage.NormalizedError)" -tenant $TenantFilter -sev error -LogData $ErrorMessage - return "Could not send alerts to webhook: $($ErrorMessage.NormalizedError)" + $ErrorObject = Get-CippException -Exception $_ + $ErrorObject | Add-Member -NotePropertyName WebhookUrl -NotePropertyValue ($Config.webhook ?? $AltWebhook) -Force + Write-Information "Could not send alerts to webhook: $($_.Exception.Message)" + Write-LogMessage -API 'Webhook Alerts' -message "Could not send alerts to webhook: $($_.Exception.Message)" -tenant $TenantFilter -sev error -LogData $ErrorObject + return "Error: Could not send alerts to webhook $($_.Exception.Message)" } } diff --git a/Modules/CIPPCore/Public/Set-CIPPDBCacheMailboxes.ps1 b/Modules/CIPPCore/Public/Set-CIPPDBCacheMailboxes.ps1 index d8a10e8e703b..c6b5579b6390 100644 --- a/Modules/CIPPCore/Public/Set-CIPPDBCacheMailboxes.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPDBCacheMailboxes.ps1 @@ -73,54 +73,66 @@ function Set-CIPPDBCacheMailboxes { Write-LogMessage -API 'CIPPDBCache' -tenant $TenantFilter -message "Starting batch caching for types: $($Types -join ', ')" -sev Debug Write-Information "Starting batch caching for types: $($Types -join ', ')" - # Create batches based on selected types - $BatchSize = 10 - $TotalBatches = [Math]::Ceiling($Mailboxes.Count / $BatchSize) + # Batch sizes per type: + # - Permissions & Rules use New-ExoBulkRequest (single POST), scales well → 50 + # - Calendar makes 2 serial Exchange calls per mailbox, needs smaller batches → 25 + $PermissionBatchSize = 50 + $CalendarBatchSize = 25 + $RulesBatchSize = 50 # Separate batches for permissions and rules $PermissionBatches = [System.Collections.Generic.List[object]]::new() $RuleBatches = [System.Collections.Generic.List[object]]::new() $AllMailboxData = @($Mailboxes | Select-Object id, UPN, GrantSendOnBehalfTo) - - for ($i = 0; $i -lt $Mailboxes.Count; $i += $BatchSize) { - $BatchMailboxes = $Mailboxes[$i..[Math]::Min($i + $BatchSize - 1, $Mailboxes.Count - 1)] - $BatchMailboxUPNs = $BatchMailboxes | Select-Object -ExpandProperty UPN - $BatchNumber = [Math]::Floor($i / $BatchSize) + 1 - - # Add mailbox permissions batch if requested - if ($Types -contains 'Permissions') { + $AllMailboxUPNs = @($Mailboxes | Select-Object -ExpandProperty UPN) + + # Build permission batches (mailbox + calendar in their respective sizes) + if ($Types -contains 'Permissions') { + $TotalPermBatches = [Math]::Ceiling($Mailboxes.Count / $PermissionBatchSize) + for ($i = 0; $i -lt $Mailboxes.Count; $i += $PermissionBatchSize) { + $BatchMailboxUPNs = $AllMailboxUPNs[$i..[Math]::Min($i + $PermissionBatchSize - 1, $Mailboxes.Count - 1)] + $BatchNumber = [Math]::Floor($i / $PermissionBatchSize) + 1 $PermissionBatches.Add([PSCustomObject]@{ FunctionName = 'GetMailboxPermissionsBatch' - QueueName = "Mailbox Permissions Batch $BatchNumber/$TotalBatches - $TenantFilter" + QueueName = "Mailbox Permissions Batch $BatchNumber/$TotalPermBatches - $TenantFilter" TenantFilter = $TenantFilter Mailboxes = $BatchMailboxUPNs MailboxData = $AllMailboxData BatchNumber = $BatchNumber - TotalBatches = $TotalBatches + TotalBatches = $TotalPermBatches }) } + } - # Add calendar permissions batch if requested - if ($Types -contains 'CalendarPermissions') { + if ($Types -contains 'CalendarPermissions') { + $TotalCalBatches = [Math]::Ceiling($Mailboxes.Count / $CalendarBatchSize) + for ($i = 0; $i -lt $Mailboxes.Count; $i += $CalendarBatchSize) { + $BatchMailboxUPNs = $AllMailboxUPNs[$i..[Math]::Min($i + $CalendarBatchSize - 1, $Mailboxes.Count - 1)] + $BatchNumber = [Math]::Floor($i / $CalendarBatchSize) + 1 $PermissionBatches.Add([PSCustomObject]@{ FunctionName = 'GetCalendarPermissionsBatch' - QueueName = "Calendar Permissions Batch $BatchNumber/$TotalBatches - $TenantFilter" + QueueName = "Calendar Permissions Batch $BatchNumber/$TotalCalBatches - $TenantFilter" TenantFilter = $TenantFilter Mailboxes = $BatchMailboxUPNs BatchNumber = $BatchNumber - TotalBatches = $TotalBatches + TotalBatches = $TotalCalBatches }) } + } - # Add mailbox rules batch if requested - if ($Types -contains 'Rules') { + # Build rules batches + if ($Types -contains 'Rules') { + $TotalRuleBatches = [Math]::Ceiling($Mailboxes.Count / $RulesBatchSize) + for ($i = 0; $i -lt $Mailboxes.Count; $i += $RulesBatchSize) { + $BatchMailboxUPNs = $AllMailboxUPNs[$i..[Math]::Min($i + $RulesBatchSize - 1, $Mailboxes.Count - 1)] + $BatchNumber = [Math]::Floor($i / $RulesBatchSize) + 1 $RuleBatches.Add([PSCustomObject]@{ FunctionName = 'GetMailboxRulesBatch' - QueueName = "Mailbox Rules Batch $BatchNumber/$TotalBatches - $TenantFilter" + QueueName = "Mailbox Rules Batch $BatchNumber/$TotalRuleBatches - $TenantFilter" TenantFilter = $TenantFilter Mailboxes = $BatchMailboxUPNs BatchNumber = $BatchNumber - TotalBatches = $TotalBatches + TotalBatches = $TotalRuleBatches }) } } diff --git a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 index 70bd44d5ddd7..3848a446457c 100644 --- a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 @@ -20,7 +20,20 @@ function Set-CIPPDefaultAPDeploymentProfile { ) try { - if ($Language -eq 'user-select') { $Language = '' } + if ($Language -in @('user-select', 'os-default')) { $Language = '' } + + # userType in outOfBoxExperienceSetting is only valid for user-driven (singleUser) mode. + # The Intune API rejects it for self-deploying (shared) mode. + $OutOfBoxSetting = [ordered]@{ + 'deviceUsageType' = "$DeploymentMode" + 'escapeLinkHidden' = $([bool]($true)) + 'privacySettingsHidden' = $([bool]($HidePrivacy)) + 'eulaHidden' = $([bool]($HideTerms)) + 'keyboardSelectionPageSkipped' = $([bool]($AutoKeyboard)) + } + if ($DeploymentMode -ne 'shared') { + $OutOfBoxSetting['userType'] = "$UserType" + } $ObjBody = [pscustomobject]@{ '@odata.type' = '#microsoft.graph.azureADWindowsAutopilotDeploymentProfile' @@ -32,14 +45,7 @@ function Set-CIPPDefaultAPDeploymentProfile { 'deviceType' = 'windowsPc' 'hardwareHashExtractionEnabled' = $([bool]($CollectHash)) 'roleScopeTagIds' = @() - 'outOfBoxExperienceSetting' = @{ - 'deviceUsageType' = "$DeploymentMode" - 'escapeLinkHidden' = $([bool]($true)) - 'privacySettingsHidden' = $([bool]($HidePrivacy)) - 'eulaHidden' = $([bool]($HideTerms)) - 'userType' = "$UserType" - 'keyboardSelectionPageSkipped' = $([bool]($AutoKeyboard)) - } + 'outOfBoxExperienceSetting' = $OutOfBoxSetting } $Body = ConvertTo-Json -InputObject $ObjBody -Depth 10 diff --git a/Modules/CIPPCore/Public/Set-CIPPMailboxRule.ps1 b/Modules/CIPPCore/Public/Set-CIPPMailboxRule.ps1 index 06dc1d126e59..1899220f7677 100644 --- a/Modules/CIPPCore/Public/Set-CIPPMailboxRule.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPMailboxRule.ps1 @@ -22,7 +22,7 @@ } try { - $null = New-ExoRequest -tenantid $TenantFilter -cmdlet "$State-InboxRule" -Anchor $Username -cmdParams @{Identity = $RuleId; Mailbox = $UserId } + $null = New-ExoRequest -tenantid $TenantFilter -cmdlet "$State-InboxRule" -Anchor $Username -cmdParams @{Identity = $RuleId} Write-LogMessage -headers $Headers -API $APIName -message "Successfully set mailbox rule $($RuleName) for $($Username) to $($State)d" -Sev 'Info' -tenant $TenantFilter # Update the cached rule if it exists (without calling Exchange again) diff --git a/Modules/CIPPCore/Public/Set-CIPPUserJITAdmin.ps1 b/Modules/CIPPCore/Public/Set-CIPPUserJITAdmin.ps1 index 2fdcb5864535..4adcd4831f7e 100644 --- a/Modules/CIPPCore/Public/Set-CIPPUserJITAdmin.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPUserJITAdmin.ps1 @@ -15,6 +15,9 @@ function Set-CIPPUserJITAdmin { .PARAMETER Roles List of Role GUIDs to add or remove + .PARAMETER Groups + List of Group GUIDs to add or remove + .PARAMETER Action Action to perform: Create, AddRoles, RemoveRoles, DeleteUser, DisableUser @@ -38,8 +41,9 @@ function Set-CIPPUserJITAdmin { [Parameter(Mandatory = $true)] [hashtable]$User, [string[]]$Roles, + [string[]]$Groups, [Parameter(Mandatory = $true)] - [ValidateSet('Create', 'AddRoles', 'RemoveRoles', 'DeleteUser', 'DisableUser')] + [ValidateSet('Create', 'AddRoles', 'AddGroups', 'AddRolesAndGroups', 'RemoveRoles', 'RemoveGroups', 'RemoveRolesAndGroups', 'DeleteUser', 'DisableUser')] [string]$Action, [datetime]$Expiration, [datetime]$StartDate, @@ -108,14 +112,22 @@ function Set-CIPPUserJITAdmin { } } 'AddRoles' { - $Roles = $Roles | ForEach-Object { - try { - $Body = @{ - '@odata.id' = "https://graph.microsoft.com/v1.0/directoryObjects/$($UserObj.id)" + if ($Roles) { + $Roles | ForEach-Object { + try { + # Activate the directory role if not already active + try { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/directoryRoles" -tenantid $TenantFilter -body (@{ roleTemplateId = $_ } | ConvertTo-Json) -ErrorAction SilentlyContinue + } catch {} + $Body = @{ + '@odata.id' = "https://graph.microsoft.com/v1.0/directoryObjects/$($UserObj.id)" + } + $Json = ConvertTo-Json -Depth 5 -InputObject $Body + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/`$ref" -tenantid $TenantFilter -body $Json -ErrorAction SilentlyContinue + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to add role $($_) to user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' } - $Json = ConvertTo-Json -Depth 5 -InputObject $Body - $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/`$ref" -tenantid $TenantFilter -body $Json -ErrorAction SilentlyContinue - } catch {} + } } $UserEnabled = (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$($UserObj.id)?`$select=accountEnabled" -tenantid $TenantFilter).accountEnabled if (-not $UserEnabled) { @@ -125,7 +137,9 @@ function Set-CIPPUserJITAdmin { $Json = ConvertTo-Json -Depth 5 -InputObject $Body try { New-GraphPOSTRequest -type PATCH -uri "https://graph.microsoft.com/beta/users/$($UserObj.id)" -tenantid $TenantFilter -body $Json | Out-Null - } catch {} + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to enable user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } } $CreatedBy = if ($Headers) { ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($Headers.'x-ms-client-principal')) | ConvertFrom-Json).userDetails @@ -148,17 +162,131 @@ function Set-CIPPUserJITAdmin { Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' -LogData $LogData return "Added admin roles to user $($UserObj.displayName) ($($UserObj.userPrincipalName))" } - 'RemoveRoles' { - $Roles = $Roles | ForEach-Object { + 'AddGroups' { + if ($Groups) { + foreach ($GroupId in $Groups) { + try { + $Body = @{ + '@odata.id' = "https://graph.microsoft.com/v1.0/directoryObjects/$($UserObj.id)" + } + $Json = ConvertTo-Json -Depth 5 -InputObject $Body + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/groups/$GroupId/members/`$ref" -tenantid $TenantFilter -body $Json -ErrorAction SilentlyContinue + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to add user $($UserObj.userPrincipalName) to group $GroupId`: $($_.Exception.Message)" -Sev 'Error' + } + } + } + $CreatedBy = if ($Headers) { ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($Headers.'x-ms-client-principal')) | ConvertFrom-Json).userDetails } else { 'Unknown' } + Set-CIPPUserJITAdminProperties -TenantFilter $TenantFilter -UserId $UserObj.id -Enabled -Expiration $Expiration -StartDate $StartDate -Reason $Reason -CreatedBy $CreatedBy | Out-Null + $Message = "Added group memberships for user $($UserObj.displayName) ($($UserObj.userPrincipalName)). Reason: $Reason" + Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' + return $Message + } + 'AddRolesAndGroups' { + # Add roles + if ($Roles) { + $Roles | ForEach-Object { + try { + # Activate the directory role if not already active + try { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/directoryRoles" -tenantid $TenantFilter -body (@{ roleTemplateId = $_ } | ConvertTo-Json) -ErrorAction SilentlyContinue + } catch {} + $Body = @{ + '@odata.id' = "https://graph.microsoft.com/v1.0/directoryObjects/$($UserObj.id)" + } + $Json = ConvertTo-Json -Depth 5 -InputObject $Body + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/`$ref" -tenantid $TenantFilter -body $Json -ErrorAction SilentlyContinue + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to add role $($_) to user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } + } + } + # Add groups + if ($Groups) { + foreach ($GroupId in $Groups) { + try { + $Body = @{ + '@odata.id' = "https://graph.microsoft.com/v1.0/directoryObjects/$($UserObj.id)" + } + $Json = ConvertTo-Json -Depth 5 -InputObject $Body + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/groups/$GroupId/members/`$ref" -tenantid $TenantFilter -body $Json -ErrorAction SilentlyContinue + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to add group $GroupId to user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } + } + } + $UserEnabled = (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$($UserObj.id)?`$select=accountEnabled" -tenantid $TenantFilter).accountEnabled + if (-not $UserEnabled) { + $Body = @{ accountEnabled = $true } + $Json = ConvertTo-Json -Depth 5 -InputObject $Body try { - $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/$($UserObj.id)/`$ref" -tenantid $TenantFilter - } catch {} + New-GraphPOSTRequest -type PATCH -uri "https://graph.microsoft.com/beta/users/$($UserObj.id)" -tenantid $TenantFilter -body $Json | Out-Null + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to enable user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } + } + $CreatedBy = if ($Headers) { ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($Headers.'x-ms-client-principal')) | ConvertFrom-Json).userDetails } else { 'Unknown' } + Set-CIPPUserJITAdminProperties -TenantFilter $TenantFilter -UserId $UserObj.id -Enabled -Expiration $Expiration -StartDate $StartDate -Reason $Reason -CreatedBy $CreatedBy | Out-Null + $Message = "Added admin roles and group memberships for user $($UserObj.displayName) ($($UserObj.userPrincipalName)). Reason: $Reason" + Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' + return $Message + } + 'RemoveRoles' { + if ($Roles) { + $Roles | ForEach-Object { + try { + $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/$($UserObj.id)/`$ref" -tenantid $TenantFilter + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to remove role $($_) from user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } + } } Set-CIPPUserJITAdminProperties -TenantFilter $TenantFilter -UserId $UserObj.id -Clear | Out-Null $Message = "Removed admin roles from user $($UserObj.displayName) ($($UserObj.userPrincipalName))" Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' return "Removed admin roles from user $($UserObj.displayName)" } + 'RemoveGroups' { + if ($Groups) { + foreach ($GroupId in $Groups) { + try { + $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/groups/$GroupId/members/$($UserObj.id)/`$ref" -tenantid $TenantFilter + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to remove user $($UserObj.userPrincipalName) from group $GroupId`: $($_.Exception.Message)" -Sev 'Error' + } + } + } + Set-CIPPUserJITAdminProperties -TenantFilter $TenantFilter -UserId $UserObj.id -Clear | Out-Null + $Message = "Removed group memberships from user $($UserObj.displayName) ($($UserObj.userPrincipalName))" + Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' + return $Message + } + 'RemoveRolesAndGroups' { + # Remove roles + if ($Roles) { + $Roles | ForEach-Object { + try { + $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/directoryRoles(roleTemplateId='$($_)')/members/$($UserObj.id)/`$ref" -tenantid $TenantFilter + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to remove role $($_) from user $($UserObj.userPrincipalName): $($_.Exception.Message)" -Sev 'Error' + } + } + } + # Remove groups + if ($Groups) { + foreach ($GroupId in $Groups) { + try { + $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/groups/$GroupId/members/$($UserObj.id)/`$ref" -tenantid $TenantFilter + } catch { + Write-LogMessage -API $APIName -tenant $TenantFilter -message "Failed to remove user $($UserObj.userPrincipalName) from group $GroupId`: $($_.Exception.Message)" -Sev 'Error' + } + } + } + Set-CIPPUserJITAdminProperties -TenantFilter $TenantFilter -UserId $UserObj.id -Clear | Out-Null + $Message = "Removed admin roles and group memberships from user $($UserObj.displayName) ($($UserObj.userPrincipalName))" + Write-LogMessage -Headers $Headers -API $APIName -tenant $TenantFilter -message $Message -Sev 'Info' + return $Message + } 'DeleteUser' { try { $null = New-GraphPOSTRequest -type DELETE -uri "https://graph.microsoft.com/beta/users/$($UserObj.userPrincipalName)" -tenantid $TenantFilter diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDMARCToMOERA.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDMARCToMOERA.ps1 index 63fa43bc6ece..73e319cc92b3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDMARCToMOERA.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDMARCToMOERA.ps1 @@ -47,19 +47,24 @@ function Invoke-CIPPStandardAddDMARCToMOERA { # Get all fallback domains (onmicrosoft.com domains) and check if the DMARC record is set correctly try { - $Domains = New-GraphGetRequest -scope 'https://admin.microsoft.com/.default' -TenantID $Tenant -Uri 'https://admin.microsoft.com/admin/api/Domains/List' | Where-Object -Property Name -Like '*.onmicrosoft.com' + $DomainsResponse = New-GraphGetRequest -TenantID $Tenant -Uri 'https://graph.microsoft.com/beta/domains' + Write-Warning ($DomainsResponse | ConvertTo-Json -Depth 5) + $Domains = @($DomainsResponse | Where-Object { $_.id -like '*.onmicrosoft.com' } | ForEach-Object { $_.id }) + Write-Information "Detected $($Domains.Count) MOERA domains: $($Domains -join ', ')" $CurrentInfo = foreach ($Domain in $Domains) { # Get current DNS records that matches _dmarc hostname and TXT type - $RecordsResponse = New-GraphGetRequest -scope 'https://admin.microsoft.com/.default' -TenantID $Tenant -Uri "https://admin.microsoft.com/admin/api/Domains/Records?domainName=$($Domain.Name)" - $AllRecords = $RecordsResponse | Select-Object -ExpandProperty DnsRecords - $CurrentRecords = $AllRecords | Where-Object { $_.HostName -eq '_dmarc' -and $_.Type -eq 'TXT' } - Write-Information "Found $($CurrentRecords.count) DMARC records for domain $($Domain.Name)" + $RecordsResponse = New-GraphGetRequest -TenantID $Tenant -Uri "https://graph.microsoft.com/beta/domains/$($Domain)/serviceConfigurationRecords" + $AllRecords = @($RecordsResponse) + $CurrentRecords = $AllRecords | Where-Object { + $_.recordType -ieq 'Txt' -and ($_.label -ieq '_dmarc' -or $_.label -ieq "_dmarc.$($Domain)") + } + Write-Information "Found $($CurrentRecords.count) DMARC records for domain $($Domain)" if ($CurrentRecords.count -eq 0) { #record not found, return a model with Match set to false [PSCustomObject]@{ - DomainName = $Domain.Name + DomainName = $Domain Match = $false CurrentRecord = $null } @@ -67,24 +72,34 @@ function Invoke-CIPPStandardAddDMARCToMOERA { foreach ($CurrentRecord in $CurrentRecords) { # Create variable matching the RecordModel used for comparison $CurrentRecordModel = [PSCustomObject]@{ - HostName = $CurrentRecord.HostName - TtlValue = $CurrentRecord.TtlValue - Type = $CurrentRecord.Type - Value = $CurrentRecord.Value + HostName = '_dmarc' + TtlValue = $CurrentRecord.ttl + Type = 'TXT' + Value = $CurrentRecord.text } # Compare the current record with the expected record model if (!(Compare-Object -ReferenceObject $RecordModel -DifferenceObject $CurrentRecordModel -Property HostName, TtlValue, Type, Value)) { [PSCustomObject]@{ - DomainName = $Domain.Name + DomainName = $Domain Match = $true - CurrentRecord = $CurrentRecord + CurrentRecord = [PSCustomObject]@{ + HostName = '_dmarc' + TtlValue = $CurrentRecord.ttl + Type = 'TXT' + Value = $CurrentRecord.text + } } } else { [PSCustomObject]@{ - DomainName = $Domain.Name + DomainName = $Domain Match = $false - CurrentRecord = $CurrentRecord + CurrentRecord = [PSCustomObject]@{ + HostName = '_dmarc' + TtlValue = $CurrentRecord.ttl + Type = 'TXT' + Value = $CurrentRecord.text + } } } } @@ -106,45 +121,6 @@ function Invoke-CIPPStandardAddDMARCToMOERA { return $Message } - if ($Settings.remediate -eq $true) { - if ($StateIsCorrect -eq $true) { - Write-LogMessage -API 'Standards' -tenant $tenant -message 'DMARC record is already set for all MOERA (onmicrosoft.com) domains.' -sev Info - } else { - # Loop through each domain and set the DMARC record, existing misconfigured records and duplicates will be deleted - foreach ($Domain in ($CurrentInfo | Sort-Object -Property DomainName -Unique)) { - try { - $DomainRecords = @($CurrentInfo | Where-Object -Property DomainName -EQ $Domain.DomainName) - $HasMatchingRecord = $false - - # First, delete any non-matching records - foreach ($Record in $DomainRecords) { - if ($Record.CurrentRecord) { - if ($Record.Match -eq $false) { - # Delete incorrect record - New-GraphPOSTRequest -tenantid $tenant -scope 'https://admin.microsoft.com/.default' -Uri "https://admin.microsoft.com/admin/api/Domains/Record?domainName=$($Domain.DomainName)" -Body ($Record.CurrentRecord | ConvertTo-Json -Compress) -AddedHeaders @{'x-http-method-override' = 'Delete' } - Write-LogMessage -API 'Standards' -tenant $tenant -message "Deleted incorrect DMARC record for domain $($Domain.DomainName)" -sev Info - } else { - # Record already matches, no need to add - $HasMatchingRecord = $true - } - } - } - - # Only add the record if we don't already have a matching one - if (-not $HasMatchingRecord) { - New-GraphPOSTRequest -tenantid $tenant -scope 'https://admin.microsoft.com/.default' -type 'PUT' -Uri "https://admin.microsoft.com/admin/api/Domains/Record?domainName=$($Domain.DomainName)" -Body (@{RecordModel = $RecordModel } | ConvertTo-Json -Compress) - Write-LogMessage -API 'Standards' -tenant $tenant -message "Set DMARC record for domain $($Domain.DomainName)" -sev Info - } else { - Write-LogMessage -API 'Standards' -tenant $tenant -message "DMARC record already correctly set for domain $($Domain.DomainName)" -sev Info - } - } catch { - $ErrorMessage = Get-CippException -Exception $_ - Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to set DMARC record for domain $($Domain.DomainName): $($ErrorMessage.NormalizedError)" -sev Error -LogData $ErrorMessage - } - } - } - } - if ($Settings.alert -eq $true) { if ($StateIsCorrect -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'DMARC record is already set for all MOERA (onmicrosoft.com) domains.' -sev Info diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutopilotProfile.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutopilotProfile.ps1 index 1c4a92c98977..6c8fa921541d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutopilotProfile.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutopilotProfile.ps1 @@ -69,7 +69,7 @@ function Invoke-CIPPStandardAutopilotProfile { ($CurrentConfig.outOfBoxExperienceSetting.deviceUsageType -eq $DeploymentMode) -and ($CurrentConfig.outOfBoxExperienceSetting.privacySettingsHidden -eq $Settings.HidePrivacy) -and ($CurrentConfig.outOfBoxExperienceSetting.eulaHidden -eq $Settings.HideTerms) -and - ($CurrentConfig.outOfBoxExperienceSetting.userType -eq $userType) -and + ($DeploymentMode -eq 'shared' -or $CurrentConfig.outOfBoxExperienceSetting.userType -eq $userType) -and ($CurrentConfig.outOfBoxExperienceSetting.keyboardSelectionPageSkipped -eq $Settings.AutoKeyboard) } catch { $ErrorMessage = Get-CippException -Exception $_ @@ -78,15 +78,27 @@ function Invoke-CIPPStandardAutopilotProfile { } $CurrentValue = $CurrentConfig | Select-Object -Property displayName, description, deviceNameTemplate, locale, preprovisioningAllowed, hardwareHashExtractionEnabled, @{Name = 'outOfBoxExperienceSetting'; Expression = { - [PSCustomObject]@{ + $oobe = [PSCustomObject]@{ deviceUsageType = $_.outOfBoxExperienceSetting.deviceUsageType privacySettingsHidden = $_.outOfBoxExperienceSetting.privacySettingsHidden eulaHidden = $_.outOfBoxExperienceSetting.eulaHidden - userType = $_.outOfBoxExperienceSetting.userType keyboardSelectionPageSkipped = $_.outOfBoxExperienceSetting.keyboardSelectionPageSkipped } + if ($DeploymentMode -ne 'shared') { + $oobe | Add-Member -NotePropertyName 'userType' -NotePropertyValue $_.outOfBoxExperienceSetting.userType + } + $oobe } } + $ExpectedOobe = [PSCustomObject]@{ + deviceUsageType = $DeploymentMode + privacySettingsHidden = $Settings.HidePrivacy + eulaHidden = $Settings.HideTerms + keyboardSelectionPageSkipped = $Settings.AutoKeyboard + } + if ($DeploymentMode -ne 'shared') { + $ExpectedOobe | Add-Member -NotePropertyName 'userType' -NotePropertyValue $userType + } $ExpectedValue = [PSCustomObject]@{ displayName = $Settings.DisplayName description = $Settings.Description @@ -94,13 +106,7 @@ function Invoke-CIPPStandardAutopilotProfile { locale = $Settings.Languages.value preprovisioningAllowed = $Settings.AllowWhiteGlove hardwareHashExtractionEnabled = $Settings.CollectHash - outOfBoxExperienceSetting = [PSCustomObject]@{ - deviceUsageType = $DeploymentMode - privacySettingsHidden = $Settings.HidePrivacy - eulaHidden = $Settings.HideTerms - userType = $userType - keyboardSelectionPageSkipped = $Settings.AutoKeyboard - } + outOfBoxExperienceSetting = $ExpectedOobe } # Remediate if the state is not correct diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeployMailContact.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeployMailContact.ps1 index e264f723eb36..7fdd7dfb055d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeployMailContact.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeployMailContact.ps1 @@ -54,20 +54,13 @@ function Invoke-CIPPStandardDeployMailContact { return } - # Prepare contact data for reuse - $ContactData = @{ - DisplayName = $Settings.DisplayName - ExternalEmailAddress = $Settings.ExternalEmailAddress - FirstName = $Settings.FirstName - LastName = $Settings.LastName - } - # Check if contact already exists try { $ExistingContact = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MailContact' -cmdParams @{ Identity = $Settings.ExternalEmailAddress ErrorAction = 'Stop' } + $ExistingContactLookup = New-GraphGetRequest -tenantid $Tenant -uri "https://graph.microsoft.com/beta/contacts/$($ExistingContact.ExternalDirectoryObjectId)" -ErrorAction 'Stop' } catch { if ($_.Exception.Message -like "*couldn't be found*") { $ExistingContact = $null @@ -80,13 +73,33 @@ function Invoke-CIPPStandardDeployMailContact { # Remediation if ($Settings.remediate -eq $true -and -not $ExistingContact) { try { - $NewContactParams = $ContactData.Clone() + $NewContactParams = @{ + Name = $Settings.DisplayName + ExternalEmailAddress = $Settings.ExternalEmailAddress + FirstName = $Settings.FirstName + LastName = $Settings.LastName + } $NewContactParams.Name = $Settings.DisplayName $null = New-ExoRequest -tenantid $Tenant -cmdlet 'New-MailContact' -cmdParams $NewContactParams + # I would like to update the contact object here but exchange replication delays make it unreliable, so instead it will alert on the discrepancy until the next run - Zac Write-LogMessage -API 'Standards' -tenant $Tenant -message "Successfully created mail contact $($Settings.DisplayName) with email $($Settings.ExternalEmailAddress)" -sev Info } catch { Write-LogMessage -API 'Standards' -tenant $Tenant -message "Could not create mail contact. $(Get-CippException -Exception $_).NormalizedError" -sev Error } + } elseif ($Settings.remediate -eq $true -and $ExistingContact -and ($ExistingContactLookup.givenName -ne $Settings.FirstName -or $ExistingContactLookup.surname -ne $Settings.LastName -or $ExistingContactLookup.displayName -ne $Settings.DisplayName)) { + try { + $ContactParams = @{ + Identity = $ExistingContact.Guid + DisplayName = $Settings.DisplayName + FirstName = $Settings.FirstName + LastName = $Settings.LastName + } + $null = New-ExoRequest -tenantid $Tenant -cmdlet 'Set-Contact' -cmdParams $ContactParams + Write-LogMessage -API 'Standards' -tenant $Tenant -message "Successfully updated contact properties for $($Settings.DisplayName)" -sev Info + # I would like to update the contact object here but exchange replication delays make it unreliable, so instead it will alert on the discrepancy until the next run - Zac + } catch { + Write-LogMessage -API 'Standards' -tenant $Tenant -message "Could not update mail contact. $(Get-CippException -Exception $_).NormalizedError" -sev Error + } } # Alert @@ -101,21 +114,19 @@ function Invoke-CIPPStandardDeployMailContact { # Report if ($Settings.report -eq $true) { - $ReportData = $ContactData.Clone() $ContactData = @{ DisplayName = $Settings.DisplayName ExternalEmailAddress = $Settings.ExternalEmailAddress FirstName = $Settings.FirstName ?? '' LastName = $Settings.LastName ?? '' } - $CurrentValue = $ExistingContact | Select-Object DisplayName, ExternalEmailAddress, FirstName, LastName $currentValue = @{ - DisplayName = $ExistingContact.displayName + DisplayName = $ExistingContactLookup.displayName ExternalEmailAddress = ($ExistingContact.ExternalEmailAddress -replace 'SMTP:', '') - FirstName = $ExistingContact.firstName ?? '' - LastName = $ExistingContact.lastName ?? '' + FirstName = $ExistingContactLookup.givenName ?? '' + LastName = $ExistingContactLookup.surname ?? '' } - Add-CIPPBPAField -FieldName 'DeployMailContact' -FieldValue $ReportData -StoreAs json -Tenant $Tenant - Set-CIPPStandardsCompareField -FieldName 'standards.DeployMailContact' -CurrentValue $CurrentValue -ExpectedValue $ReportData -Tenant $Tenant + Add-CIPPBPAField -FieldName 'DeployMailContact' -FieldValue $ContactData -StoreAs json -Tenant $Tenant + Set-CIPPStandardsCompareField -FieldName 'standards.DeployMailContact' -CurrentValue $CurrentValue -ExpectedValue $ContactData -Tenant $Tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 index f7c72a9f8675..fec27a83f821 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 @@ -201,7 +201,23 @@ function Invoke-CIPPStandardMalwareFilterPolicy { } if ($Settings.report -eq $true) { - $CurrentValue = $CurrentState | Select-Object Name, EnableFileFilter, FileTypeAction, FileTypes, ZapEnabled, QuarantineTag, EnableInternalSenderAdminNotifications, InternalSenderAdminAddress, EnableExternalSenderAdminNotifications, ExternalSenderAdminAddress + $CurrentValue = @{ + Name = $CurrentState.Name + EnableFileFilter = $CurrentState.EnableFileFilter + FileTypeAction = $CurrentState.FileTypeAction + FileTypes = $CurrentState.FileTypes + ZapEnabled = $CurrentState.ZapEnabled + QuarantineTag = $CurrentState.QuarantineTag + EnableInternalSenderAdminNotifications = $CurrentState.EnableInternalSenderAdminNotifications + EnableExternalSenderAdminNotifications = $CurrentState.EnableExternalSenderAdminNotifications + } + + if ($CurrentState.EnableInternalSenderAdminNotifications) { + $CurrentValue['InternalSenderAdminAddress'] = $CurrentState.InternalSenderAdminAddress + } + if ($CurrentState.EnableExternalSenderAdminNotifications) { + $CurrentValue['ExternalSenderAdminAddress'] = $CurrentState.ExternalSenderAdminAddress + } $ExpectedValue = @{ Name = $PolicyName @@ -211,10 +227,16 @@ function Invoke-CIPPStandardMalwareFilterPolicy { ZapEnabled = $true QuarantineTag = $Settings.QuarantineTag EnableInternalSenderAdminNotifications = $Settings.EnableInternalSenderAdminNotifications - InternalSenderAdminAddress = $Settings.InternalSenderAdminAddress EnableExternalSenderAdminNotifications = $Settings.EnableExternalSenderAdminNotifications - ExternalSenderAdminAddress = $Settings.ExternalSenderAdminAddress } + + if ($Settings.EnableInternalSenderAdminNotifications) { + $ExpectedValue['InternalSenderAdminAddress'] = $Settings.InternalSenderAdminAddress + } + if ($Settings.EnableExternalSenderAdminNotifications) { + $ExpectedValue['ExternalSenderAdminAddress'] = $Settings.ExternalSenderAdminAddress + } + Set-CIPPStandardsCompareField -FieldName 'standards.MalwareFilterPolicy' -CurrentValue $CurrentValue -ExpectedValue $ExpectedValue -TenantFilter $Tenant Add-CIPPBPAField -FieldName 'MalwareFilterPolicy' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 index 4a9d73a371d4..5d2c54ca3cfc 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 @@ -195,7 +195,7 @@ function Invoke-CIPPStandardSafeAttachmentPolicy { redirectAddress = $CurrentState.RedirectAddress } - $ExpectedValue = [pscustomobject]@{ + $ExpectedValue = @{ name = $PolicyName enable = $true action = $Settings.SafeAttachmentAction diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpamFilterPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpamFilterPolicy.ps1 index 37dd46c5c4a4..02654a3efd08 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpamFilterPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpamFilterPolicy.ps1 @@ -281,7 +281,7 @@ function Invoke-CIPPStandardSpamFilterPolicy { RegionBlockList = $CurrentState.RegionBlockList AllowedSenderDomains = $CurrentState.AllowedSenderDomains } - $ExpectedValue = [pscustomobject]@{ + $ExpectedValue = @{ Name = $PolicyName SpamAction = $SpamAction SpamQuarantineTag = $SpamQuarantineTag diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTeamsGlobalMeetingPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTeamsGlobalMeetingPolicy.ps1 index 73b41f0eb62c..eeaf65b614e3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTeamsGlobalMeetingPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTeamsGlobalMeetingPolicy.ps1 @@ -24,7 +24,9 @@ function Invoke-CIPPStandardTeamsGlobalMeetingPolicy { ADDEDCOMPONENT {"type":"autoComplete","required":true,"multiple":false,"creatable":false,"name":"standards.TeamsGlobalMeetingPolicy.DesignatedPresenterRoleMode","label":"Default value of the `Who can present?`","options":[{"label":"Everyone","value":"EveryoneUserOverride"},{"label":"People in my organization","value":"EveryoneInCompanyUserOverride"},{"label":"People in my organization and trusted organizations","value":"EveryoneInSameAndFederatedCompanyUserOverride"},{"label":"Only organizer","value":"OrganizerOnlyUserOverride"}]} {"type":"switch","name":"standards.TeamsGlobalMeetingPolicy.AllowAnonymousUsersToJoinMeeting","label":"Allow anonymous users to join meeting"} + {"type":"switch","name":"standards.TeamsGlobalMeetingPolicy.AllowAnonymousUsersToStartMeeting","label":"Allow anonymous users to start meeting"} {"type":"autoComplete","required":false,"multiple":false,"creatable":false,"name":"standards.TeamsGlobalMeetingPolicy.AutoAdmittedUsers","label":"Who can bypass the lobby?","helperText":"If left blank, the current value will not be changed.","options":[{"label":"Only organizers and co-organizers","value":"OrganizerOnly"},{"label":"People in organization excluding guests","value":"EveryoneInCompanyExcludingGuests"},{"label":"People who were invited","value":"InvitedUsers"}]} + {"type":"switch","name":"standards.TeamsGlobalMeetingPolicy.AllowPSTNUsersToBypassLobby","label":"Allow dial-in users to bypass the lobby"} {"type":"autoComplete","required":true,"multiple":false,"creatable":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"}]} {"type":"switch","name":"standards.TeamsGlobalMeetingPolicy.AllowExternalParticipantGiveRequestControl","label":"External participants can give or request control"} {"type":"switch","name":"standards.TeamsGlobalMeetingPolicy.AllowParticipantGiveRequestControl","label":"Participants can give or request control"} @@ -62,9 +64,9 @@ function Invoke-CIPPStandardTeamsGlobalMeetingPolicy { $AutoAdmittedUsers = $Settings.AutoAdmittedUsers.value ?? $Settings.AutoAdmittedUsers ?? $CurrentState.AutoAdmittedUsers # Default to current state if not set, for backward compatibility pre v8.6.0 $StateIsCorrect = ($CurrentState.AllowAnonymousUsersToJoinMeeting -eq $Settings.AllowAnonymousUsersToJoinMeeting) -and - ($CurrentState.AllowAnonymousUsersToStartMeeting -eq $false) -and + ($CurrentState.AllowAnonymousUsersToStartMeeting -eq $Settings.AllowAnonymousUsersToStartMeeting) -and ($CurrentState.AutoAdmittedUsers -eq $AutoAdmittedUsers) -and - ($CurrentState.AllowPSTNUsersToBypassLobby -eq $false) -and + ($CurrentState.AllowPSTNUsersToBypassLobby -eq $Settings.AllowPSTNUsersToBypassLobby) -and ($CurrentState.MeetingChatEnabledType -eq $MeetingChatEnabledType) -and ($CurrentState.DesignatedPresenterRoleMode -eq $DesignatedPresenterRoleMode) -and ($CurrentState.AllowExternalParticipantGiveRequestControl -eq $Settings.AllowExternalParticipantGiveRequestControl) -and @@ -78,9 +80,9 @@ function Invoke-CIPPStandardTeamsGlobalMeetingPolicy { $cmdParams = @{ Identity = 'Global' AllowAnonymousUsersToJoinMeeting = $Settings.AllowAnonymousUsersToJoinMeeting - AllowAnonymousUsersToStartMeeting = $false + AllowAnonymousUsersToStartMeeting = $Settings.AllowAnonymousUsersToStartMeeting AutoAdmittedUsers = $AutoAdmittedUsers - AllowPSTNUsersToBypassLobby = $false + AllowPSTNUsersToBypassLobby = $Settings.AllowPSTNUsersToBypassLobby MeetingChatEnabledType = $MeetingChatEnabledType DesignatedPresenterRoleMode = $DesignatedPresenterRoleMode AllowExternalParticipantGiveRequestControl = $Settings.AllowExternalParticipantGiveRequestControl @@ -120,9 +122,9 @@ function Invoke-CIPPStandardTeamsGlobalMeetingPolicy { } $ExpectedValue = @{ AllowAnonymousUsersToJoinMeeting = $Settings.AllowAnonymousUsersToJoinMeeting - AllowAnonymousUsersToStartMeeting = $false + AllowAnonymousUsersToStartMeeting = $Settings.AllowAnonymousUsersToStartMeeting AutoAdmittedUsers = $AutoAdmittedUsers - AllowPSTNUsersToBypassLobby = $false + AllowPSTNUsersToBypassLobby = $Settings.AllowPSTNUsersToBypassLobby MeetingChatEnabledType = $MeetingChatEnabledType DesignatedPresenterRoleMode = $DesignatedPresenterRoleMode AllowExternalParticipantGiveRequestControl = $Settings.AllowExternalParticipantGiveRequestControl diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 index 6a949fad057f..2f58454ae3e3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 @@ -252,7 +252,7 @@ function Invoke-CIPPStandardUserSubmissions { } else { @{ State = 'Enabled' - SentTo = @($Email) + SentTo = $Email } } } diff --git a/Modules/CIPPCore/Public/Test-CIPPGDAPRelationships.ps1 b/Modules/CIPPCore/Public/Test-CIPPGDAPRelationships.ps1 index a9a9cf745444..b078eead2932 100644 --- a/Modules/CIPPCore/Public/Test-CIPPGDAPRelationships.ps1 +++ b/Modules/CIPPCore/Public/Test-CIPPGDAPRelationships.ps1 @@ -79,7 +79,7 @@ function Test-CIPPGDAPRelationships { Issue = "$($ExpectedGroup) is not assigned to the SAM user $me. If you have migrated outside of CIPP this is to be expected. Please perform an access check to make sure you have the correct set of permissions." Tenant = '*Partner Tenant' Relationship = 'None' - Link = 'https://docs.cipp.app/setup/gdap/troubleshooting#groups' + Link = 'https://docs.cipp.app/setup/installation/recommended-roles' }) | Out-Null $MissingGroups.Add([PSCustomObject]@{ @@ -94,7 +94,7 @@ function Test-CIPPGDAPRelationships { Issue = "We only found $($CIPPGroupCount) of the 15 required groups. If you have migrated outside of CIPP this is to be expected. Please perform an access check to make sure you have the correct set of permissions." Tenant = '*Partner Tenant' Relationship = 'None' - Link = 'https://docs.cipp.app/setup/gdap/troubleshooting#groups' + Link = 'https://docs.cipp.app/setup/installation/recommended-roles' }) | Out-Null } diff --git a/Tools/Update-IntuneCollection.ps1 b/Tools/Update-IntuneCollection.ps1 new file mode 100644 index 000000000000..c2e2b8b53b7f --- /dev/null +++ b/Tools/Update-IntuneCollection.ps1 @@ -0,0 +1,107 @@ +<# +.SYNOPSIS + Regenerates the intuneCollection.json lookup file from the Microsoft Graph API. + +.DESCRIPTION + Queries the Microsoft Graph beta endpoint for all Intune device management + configuration setting definitions and writes the result to intuneCollection.json + in both the CIPP-API root and CIPP/src/data directories. + + The resulting file is used by Compare-CIPPIntuneObject.ps1 (backend) and + CippTemplateFieldRenderer.jsx / CippJSONView.jsx (frontend) to translate + raw settingDefinitionIds into human-readable display names. + + Must be run from the "Tools" folder in the CIPP-API project, with + Initialize-DevEnvironment.ps1 already dot-sourced (or it will be loaded + automatically). Requires a valid CIPP-managed TenantId to obtain a Graph token. + +.PARAMETER TenantId + A tenant domain or GUID that CIPP manages. Used only to obtain a Graph + authentication token — the configurationSettings endpoint returns Microsoft's + global catalog, not tenant-specific data. + +.EXAMPLE + # From the Tools folder, after initialising your dev environment: + . .\Initialize-DevEnvironment.ps1 + .\Update-IntuneCollection.ps1 -TenantId contoso.onmicrosoft.com + +.NOTES + Permissions required: DeviceManagementConfiguration.Read.All +#> + +[CmdletBinding()] +param( + [Parameter(Mandatory)] + [string]$TenantId +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +# --------------------------------------------------------------------------- +# Ensure the CIPP module is loaded +# --------------------------------------------------------------------------- +if (-not (Get-Module -Name CIPPCore)) { + Write-Host 'CIPPCore not loaded — running Initialize-DevEnvironment.ps1...' -ForegroundColor Yellow + . (Join-Path $PSScriptRoot 'Initialize-DevEnvironment.ps1') +} + +# --------------------------------------------------------------------------- +# Fetch all configurationSettings (New-GraphGetRequest auto-paginates) +# --------------------------------------------------------------------------- +Write-Host 'Fetching Intune configuration settings (this may take a while)...' -ForegroundColor Yellow + +$allSettings = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/deviceManagement/configurationSettings' -tenantid $TenantId -NoAuthCheck $true + +Write-Host "Total settings fetched: $($allSettings.Count)" -ForegroundColor Green + +# --------------------------------------------------------------------------- +# Transform to the shape expected by CIPP +# Shape: [{ id, displayName, options: [{id, displayName, description}] | null }] +# --------------------------------------------------------------------------- +Write-Host 'Transforming data...' -ForegroundColor Yellow + +$collection = $allSettings | Sort-Object -Property id | ForEach-Object { + $rawOptions = $_.PSObject.Properties['options']?.Value + $options = if ($rawOptions -and $rawOptions.Count -gt 0) { + $rawOptions | ForEach-Object { + [PSCustomObject]@{ + id = $_.PSObject.Properties['itemId']?.Value + displayName = $_.PSObject.Properties['displayName']?.Value + description = $_.PSObject.Properties['description']?.Value + } + } + } else { + $null + } + + [PSCustomObject]@{ + id = $_.id + displayName = $_.displayName + options = $options + } +} + +# --------------------------------------------------------------------------- +# Write output files +# --------------------------------------------------------------------------- +Set-Location $PSScriptRoot + +$json = $collection | ConvertTo-Json -Depth 5 + +# CIPP-API root (used by Compare-CIPPIntuneObject.ps1 at runtime) +$apiPath = Join-Path $PSScriptRoot '..\intuneCollection.json' +$json | Set-Content -Path $apiPath -Encoding utf8NoBOM +Write-Host "Written: $(Resolve-Path $apiPath)" -ForegroundColor Green + +# CIPP frontend src/data (used by the React UI) +$frontendPath = Join-Path $PSScriptRoot '..\..\CIPP\src\data\intuneCollection.json' +if (Test-Path (Split-Path $frontendPath)) { + $json | Set-Content -Path $frontendPath -Encoding utf8NoBOM + Write-Host "Written: $(Resolve-Path $frontendPath)" -ForegroundColor Green +} else { + Write-Host "CIPP frontend path not found — skipping: $frontendPath" -ForegroundColor Yellow + Write-Host "Copy $(Resolve-Path $apiPath) manually to your CIPP/src/data/ directory." -ForegroundColor Yellow +} + +Write-Host "`nDone. $($collection.Count) settings written to intuneCollection.json." -ForegroundColor Green diff --git a/host.json b/host.json index 75920f8e7db8..75d9f008a66d 100644 --- a/host.json +++ b/host.json @@ -16,9 +16,9 @@ "distributedTracingEnabled": false, "version": "None" }, - "defaultVersion": "10.2.4", + "defaultVersion": "10.2.6", "versionMatchStrategy": "Strict", "versionFailureStrategy": "Fail" } } -} \ No newline at end of file +} diff --git a/intuneCollection.json b/intuneCollection.json index 1c6291fefa62..c6d19ca27858 100644 --- a/intuneCollection.json +++ b/intuneCollection.json @@ -111,7 +111,7 @@ }, { "id": "3~policy~microsoft_edge_targetblankimpliesnoopener", - "displayName": "Do not set window.opener for links targeting _blank (User)", + "displayName": "Do not set window.opener for links targeting _blank (obsolete) (User)", "options": [ { "id": "3~policy~microsoft_edge_targetblankimpliesnoopener_0", @@ -170,15 +170,24 @@ { "id": "ade_authenticationmethod", "displayName": "Intune authentication method", + "options": { + "id": "ade_authenticationmethod_2", + "displayName": "Setup Assistant with modern authentication", + "description": null + } + }, + { + "id": "ade_awaitconfiguration_basic", + "displayName": "Await final configuration", "options": [ { - "id": "ade_authenticationmethod_2", - "displayName": "Setup Assistant with modern authentication", + "id": "ade_awaitconfiguration_basic_0", + "displayName": "No", "description": null }, { - "id": "ade_authenticationmethod_0", - "displayName": "Company Portal", + "id": "ade_awaitconfiguration_basic_1", + "displayName": "Yes", "description": null } ] @@ -267,6 +276,22 @@ } ] }, + { + "id": "ade_setupassistant_actionbutton", + "displayName": "Action Button", + "options": [ + { + "id": "ade_setupassistant_actionbutton_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_actionbutton_1", + "displayName": "Show", + "description": null + } + ] + }, { "id": "ade_setupassistant_androidmigration", "displayName": "Android migration", @@ -374,16 +399,16 @@ ] }, { - "id": "ade_setupassistant_displaytone", - "displayName": "Display Tone", + "id": "ade_setupassistant_enablelockdownmode", + "displayName": "Enable Lock down Mode", "options": [ { - "id": "ade_setupassistant_displaytone_0", + "id": "ade_setupassistant_enablelockdownmode_0", "displayName": "Hide", "description": null }, { - "id": "ade_setupassistant_displaytone_1", + "id": "ade_setupassistant_enablelockdownmode_1", "displayName": "Show", "description": null } @@ -405,22 +430,6 @@ } ] }, - { - "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", @@ -438,32 +447,32 @@ ] }, { - "id": "ade_setupassistant_locationservices", - "displayName": "Location services", + "id": "ade_setupassistant_intelligence", + "displayName": "Intelligence", "options": [ { - "id": "ade_setupassistant_locationservices_0", + "id": "ade_setupassistant_intelligence_0", "displayName": "Hide", "description": null }, { - "id": "ade_setupassistant_locationservices_1", + "id": "ade_setupassistant_intelligence_1", "displayName": "Show", "description": null } ] }, { - "id": "ade_setupassistant_onboarding", - "displayName": "Onboarding", + "id": "ade_setupassistant_locationservices", + "displayName": "Location services", "options": [ { - "id": "ade_setupassistant_onboarding_0", + "id": "ade_setupassistant_locationservices_0", "displayName": "Hide", "description": null }, { - "id": "ade_setupassistant_onboarding_1", + "id": "ade_setupassistant_locationservices_1", "displayName": "Show", "description": null } @@ -533,6 +542,22 @@ } ] }, + { + "id": "ade_setupassistant_safety", + "displayName": "Emergency SOS", + "options": [ + { + "id": "ade_setupassistant_safety_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_safety_1", + "displayName": "Show", + "description": null + } + ] + }, { "id": "ade_setupassistant_screentime", "displayName": "Screen Time", @@ -662,32 +687,32 @@ ] }, { - "id": "ade_setupassistant_watchmigration", - "displayName": "Watch migration", + "id": "ade_setupassistant_voiceselection", + "displayName": "Voice selection", "options": [ { - "id": "ade_setupassistant_watchmigration_0", + "id": "ade_setupassistant_voiceselection_0", "displayName": "Hide", "description": null }, { - "id": "ade_setupassistant_watchmigration_1", + "id": "ade_setupassistant_voiceselection_1", "displayName": "Show", "description": null } ] }, { - "id": "ade_setupassistant_zoom", - "displayName": "Zoom", + "id": "ade_setupassistant_watchmigration", + "displayName": "Watch migration", "options": [ { - "id": "ade_setupassistant_zoom_0", + "id": "ade_setupassistant_watchmigration_0", "displayName": "Hide", "description": null }, { - "id": "ade_setupassistant_zoom_1", + "id": "ade_setupassistant_watchmigration_1", "displayName": "Show", "description": null } @@ -735,6 +760,1244 @@ } ] }, + { + "id": "ade_useraffinitybasic", + "displayName": "User affinity", + "options": { + "id": "ade_useraffinitybasic_0", + "displayName": "Enroll without user affinity", + "description": null + } + }, + { + "id": "apple_customprofile_profile", + "displayName": "Profile", + "options": null + }, + { + "id": "audioaccessory_audioaccessory", + "displayName": "com.apple.configuration.audio-accessory.settings", + "options": null + }, + { + "id": "audioaccessory_temporarypairing", + "displayName": "Temporary Pairing", + "options": null + }, + { + "id": "audioaccessory_temporarypairing_configuration", + "displayName": "Configuration", + "options": null + }, + { + "id": "audioaccessory_temporarypairing_configuration_unpairingtime", + "displayName": "Unpairing Time", + "options": null + }, + { + "id": "audioaccessory_temporarypairing_configuration_unpairingtime_hour", + "displayName": "Hour", + "options": null + }, + { + "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy", + "displayName": "Policy", + "options": [ + { + "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy_0", + "displayName": "None", + "description": null + }, + { + "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy_1", + "displayName": "Hour", + "description": null + } + ] + }, + { + "id": "audioaccessory_temporarypairing_disabled", + "displayName": "Disabled", + "options": [ + { + "id": "audioaccessory_temporarypairing_disabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "audioaccessory_temporarypairing_disabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.accountsblockmodification", + "displayName": "Block account changes", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.accountsblockmodification_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.accountsblockmodification_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources", + "displayName": "Allow installation from unknown sources", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy", + "displayName": "App auto-updates (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_notconfigured", + "displayName": "Not configured", + "description": "Not configured; this value is ignored." + }, + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_userchoice", + "displayName": "User choice", + "description": "The user can control auto-updates." + }, + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_never", + "displayName": "Never", + "description": "Apps are never auto-updated." + }, + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_wifionly", + "displayName": "Wi-Fi only", + "description": "Apps are auto-updated over Wi-Fi only." + }, + { + "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_always", + "displayName": "Always", + "description": "Apps are auto-updated at any time. Data charges may apply." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp", + "displayName": "Block user from turning on unknown sources", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy", + "displayName": "Default permission policy (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_devicedefault", + "displayName": "Device default", + "description": "Device default value, no intent." + }, + { + "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_prompt", + "displayName": "Prompt", + "description": "Prompt." + }, + { + "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_autogrant", + "displayName": "Auto grant", + "description": "Auto grant." + }, + { + "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_autodeny", + "displayName": "Auto deny", + "description": "Auto deny." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints", + "displayName": "Skip first use hints", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.assistcontentpolicy", + "displayName": "Block assist content sharing with privileged apps", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.assistcontentpolicy_false", + "displayName": "False", + "description": "Assist content is allowed to be sent to a privileged app." + }, + { + "id": "com.android.devicerestrictionpolicy.assistcontentpolicy_true", + "displayName": "True", + "description": "Assist content is blocked from being sent to a privileged app." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration", + "displayName": "Block Bluetooth configuration", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp", + "displayName": "Block Bluetooth configuration", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing", + "displayName": "Block contact sharing via Bluetooth (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblocked", + "displayName": "Block Bluetooth", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.bluetoothblocked_true", + "displayName": "True", + "description": "True" + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp", + "displayName": "Block Bluetooth", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.camerablocked", + "displayName": "Block access to camera (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.camerablocked_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.camerablocked_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.camerablockedaosp", + "displayName": "Block access to camera", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.camerablockedaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.camerablockedaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering", + "displayName": "Block tethering and access to hotspots", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled", + "displayName": "Block users from configuring credentials (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste", + "displayName": "Allow copy and paste between work and personal profiles ", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste_false", + "displayName": "False", + "description": "false" + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste_true", + "displayName": "True", + "description": "true" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing", + "displayName": "Data sharing between work and personal profile", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_notconfigured", + "displayName": "Device default", + "description": "Not configured; this value defaults to CROSS_PROFILE_DATA_SHARING_UNSPECIFIED." + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_crossprofiledatasharingblocked", + "displayName": "Block all sharing between profiles", + "description": "Data cannot be shared from both the personal profile to work profile and the work profile to the personal profile." + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_datasharingfromworktopersonalblocked", + "displayName": "Block sharing from work to personal profile", + "description": "Prevents users from sharing data from the work profile to apps in the personal profile. Personal data can be shared with work apps." + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_crossprofiledatasharingallowed", + "displayName": "No restrictions on sharing", + "description": "Data from either profile can be shared with the other profile." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile", + "displayName": "Block searching of work contacts and displaying work contact caller-id in personal profile", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile_false", + "displayName": "False", + "description": "false" + }, + { + "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile_true", + "displayName": "True", + "description": "true" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.dataroamingblocked", + "displayName": "Block roaming data services", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.dataroamingblocked_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.dataroamingblocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked", + "displayName": "Block date and time changes", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility", + "displayName": "Hide organization name", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.factoryresetblocked", + "displayName": "Block factory reset", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.factoryresetblocked_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.factoryresetblocked_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp", + "displayName": "Block factory reset", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.locationmode", + "displayName": "Block location", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.locationmode_notconfigured", + "displayName": "False", + "description": "No restrictions on the location setting and no specific behavior is set or enforced. This is the default." + }, + { + "id": "com.android.devicerestrictionpolicy.locationmode_disabled", + "displayName": "True", + "description": "Location setting is disabled on the device." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.microphoneforcemute", + "displayName": "Block microphone adjustment", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.microphoneforcemute_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.microphoneforcemute_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed", + "displayName": "Allow network escape hatch", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam", + "displayName": "Block beaming data from apps using NFC (work profile-level)", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard", + "displayName": "Disable lock screen", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordexpirationdays", + "displayName": "Number of days until password expires", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumlength", + "displayName": "Minimum password length", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumlengthaosp", + "displayName": "Minimum password length", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumlettercharacters", + "displayName": "Number of characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumlowercasecharacters", + "displayName": "Number of lowercase characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumnonlettercharacters", + "displayName": "Number of non-letter characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumnumericcharacters", + "displayName": "Number of numeric characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumsymbolcharacters", + "displayName": "Number of symbol characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminimumuppercasecharacters", + "displayName": "Number of uppercase characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp", + "displayName": "Maximum minutes of inactivity until screen locks", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_1minute", + "displayName": "1 Minute", + "description": "Screen Timeout after 1 Minute of Inactivity" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_5minutes", + "displayName": "5 Minutes", + "description": "Screen Timeout after 5 Minutes of Inactivity" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_15minutes", + "displayName": "15 Minutes", + "description": "Screen Timeout after 15 Minutes of Inactivity" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_30minutes", + "displayName": "30 Minutes", + "description": "Screen Timeout after 30 Minutes of Inactivity" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_1hour", + "displayName": "1 Hour", + "description": "Screen Timeout after 1 Hour of Inactivity" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordpreviouspasswordcounttoblock", + "displayName": "Number of passwords required before user can reuse a password", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype", + "displayName": "Required password type", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_devicedefault", + "displayName": "Device default", + "description": "Device default value, no intent." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_required", + "displayName": "Password required, no restrictions", + "description": "There must be a password set, but there are no restrictions on type." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_lowsecuritybiometric", + "displayName": "Weak Biometric", + "description": "Low security biometrics based password required." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_numeric", + "displayName": "Numeric", + "description": "At least numeric." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_numericcomplex", + "displayName": "Numeric Complex", + "description": "At least numeric with no repeating or ordered sequences." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphabetic", + "displayName": "Alphabetic", + "description": "At least alphabetic password." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphanumeric", + "displayName": "Alphanumeric", + "description": "At least alphanumeric password" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphanumericwithsymbols", + "displayName": "Alphanumeric with symbols", + "description": "At least alphanumeric with symbols." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp", + "displayName": "Required password type", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_devicedefault", + "displayName": "Device default", + "description": "Device default value, no intent." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_required", + "displayName": "Password required, no restrictions", + "description": "There must be a password set, but there are no restrictions on type." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_lowsecuritybiometric", + "displayName": "Weak Biometric", + "description": "Low security biometrics based password required." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_numeric", + "displayName": "Numeric", + "description": "At least numeric." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_numericcomplex", + "displayName": "Numeric Complex", + "description": "At least numeric with no repeating or ordered sequences." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphabetic", + "displayName": "Alphabetic", + "description": "At least alphabetic password." + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphanumeric", + "displayName": "Alphanumeric", + "description": "At least alphanumeric password" + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphanumericwithsymbols", + "displayName": "Alphanumeric with symbols", + "description": "At least alphanumeric with symbols." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequireunlock", + "displayName": "Required unlock frequency", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.passwordrequireunlock_devicedefault", + "displayName": "Device default", + "description": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordrequireunlock_requiredpasswordunlockdailyoption", + "displayName": "24 hours since last PIN, password, or pattern unlock", + "description": null + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.passwordsigninfailurecountbeforefactoryreset", + "displayName": "Number of sign-in failures before wiping device", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.passwordsigninfailurecountbeforefactoryresetaosp", + "displayName": "Number of sign-in failures before wiping device", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources", + "displayName": "Allow users to enable app installation from unknown sources in the personal profile", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked", + "displayName": "Block camera", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked", + "displayName": "Block screen capture", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.privatespacepolicy", + "displayName": "Block private space", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.privatespacepolicy_allowed", + "displayName": "False", + "description": "Users can create a private space profile." + }, + { + "id": "com.android.devicerestrictionpolicy.privatespacepolicy_disallowed", + "displayName": "True", + "description": "Users cannot create a private space profile. Supported only for company-owned devices with a work profile. Caution: Any existing private space will be removed." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.screencaptureblocked", + "displayName": "Block screen capture", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.screencaptureblocked_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.screencaptureblocked_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp", + "displayName": "Block screen capture", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp", + "displayName": "Allow users to turn on debugging features", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled", + "displayName": "Require Common Criteria mode​", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled", + "displayName": "Allow access to developer settings", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps", + "displayName": "Require threat scan on apps", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.statusbarblocked", + "displayName": "Block access to status bar", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.statusbarblocked_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.statusbarblocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.storageallowusb", + "displayName": "Allow USB storage", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.storageallowusb_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.storageallowusb_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia", + "displayName": "Block mounting of external media", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp", + "displayName": "Block mounting of external media", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp", + "displayName": "Block USB file transfer", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.systemwindowsblocked", + "displayName": "Block notification windows", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.systemwindowsblocked_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.systemwindowsblocked_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.usbdataaccess", + "displayName": "USB access", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.usbdataaccess_allowusbdatatransfer", + "displayName": "Allow USB data transfer", + "description": "All types of USB data transfers are allowed. usbFileTransferDisabled is ignored." + }, + { + "id": "com.android.devicerestrictionpolicy.usbdataaccess_disallowusbfiletransfer", + "displayName": "Disallow USB file transfer", + "description": "Transferring files over USB is disallowed. Other types of USB data connections, such as mouse and keyboard connection, are allowed. usbFileTransferDisabled is ignored." + }, + { + "id": "com.android.devicerestrictionpolicy.usbdataaccess_disallowusbdatatransfer", + "displayName": "Disallow USB data transfer", + "description": "When set, all types of USB data transfers are prohibited. Supported for devices running Android 12 or above with USB HAL 1.3 or above. If the setting is not supported, DISALLOW_USB_FILE_TRANSFER will be set. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 12. A NonComplianceDetail with DEVICE_INCOMPATIBLE is reported if the device does not have USB HAL 1.3 or above. usbFileTransferDisabled is ignored." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.volumeblockadjustment", + "displayName": "Block volume changes", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.volumeblockadjustment_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.volumeblockadjustment_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations", + "displayName": "Block Wi-Fi access point configuration", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp", + "displayName": "Block Wi-Fi setting changes", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp_false", + "displayName": "False", + "description": "False" + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations", + "displayName": "Block Wi-Fi setting changes", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations_true", + "displayName": "True", + "description": "true" + }, + { + "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations_false", + "displayName": "False", + "description": "false" + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.wifidirectsettings", + "displayName": "Block Wi-Fi Direct", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.wifidirectsettings_allowed", + "displayName": "False", + "description": "The user is allowed to use Wi-Fi direct." + }, + { + "id": "com.android.devicerestrictionpolicy.wifidirectsettings_disallowed", + "displayName": "True", + "description": "The user is not allowed to use Wi-Fi direct. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 13." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordexpirationdays", + "displayName": "Number of days until password expires", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlength", + "displayName": "Minimum password length", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlettercharacters", + "displayName": "Number of characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlowercasecharacters", + "displayName": "Number of lowercase characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumnonlettercharacters", + "displayName": "Number of non-letter characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumnumericcharacters", + "displayName": "Number of numeric characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumsymbolcharacters", + "displayName": "Number of symbol characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumuppercasecharacters", + "displayName": "Number of uppercase characters required", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordpreviouspasswordcounttoblock", + "displayName": "Number of passwords required before user can reuse a password", + "options": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype", + "displayName": "Required password type", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_devicedefault", + "displayName": "Device default", + "description": "Device default value, no intent." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_required", + "displayName": "Password required, no restrictions", + "description": "There must be a password set, but there are no restrictions on type." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_lowsecuritybiometric", + "displayName": "Weak Biometric", + "description": "Low security biometrics based password required." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_numeric", + "displayName": "Numeric", + "description": "At least numeric." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_numericcomplex", + "displayName": "Numeric Complex", + "description": "At least numeric with no repeating or ordered sequences." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphabetic", + "displayName": "Alphabetic", + "description": "At least alphabetic password." + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphanumeric", + "displayName": "Alphanumeric", + "description": "At least alphanumeric password" + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphanumericwithsymbols", + "displayName": "Alphanumeric with symbols", + "description": "At least alphanumeric with symbols." + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock", + "displayName": "Required unlock frequency", + "options": [ + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock_devicedefault", + "displayName": "Device default", + "description": null + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock_requiredpasswordunlockdailyoption", + "displayName": "24 hours since last PIN, password, or pattern unlock", + "description": null + } + ] + }, + { + "id": "com.android.devicerestrictionpolicy.workprofilepasswordsigninfailurecountbeforefactoryreset", + "displayName": "Number of sign-in failures before wiping device", + "options": null + }, { "id": "com.apple.airplay_allowlist", "displayName": "Allow List", @@ -742,7 +2005,12 @@ }, { "id": "com.apple.airplay_allowlist_item_deviceid", - "displayName": "Device ID", + "displayName": "Device ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.airplay_allowlist_item_devicename", + "displayName": "Device Name", "options": null }, { @@ -811,7 +2079,11 @@ "displayName": "Top Level Setting Group Collection", "options": null }, - { "id": "com.apple.app.lock_app", "displayName": "App", "options": null }, + { + "id": "com.apple.app.lock_app", + "displayName": "App", + "options": null + }, { "id": "com.apple.app.lock_app_identifier", "displayName": "App Identifier", @@ -1120,27 +2392,6 @@ "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", @@ -1211,12 +2462,12 @@ "options": [ { "id": "com.apple.applicationaccess_allowairplayincomingrequests_false", - "displayName": "Disabled", + "displayName": "False", "description": null }, { "id": "com.apple.applicationaccess_allowairplayincomingrequests_true", - "displayName": "Enabled", + "displayName": "True", "description": null } ] @@ -1317,6 +2568,22 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowappleintelligencereport", + "displayName": "Allow Apple Intelligence Report", + "options": [ + { + "id": "com.apple.applicationaccess_allowappleintelligencereport_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappleintelligencereport_true", + "displayName": "True", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allowapplepersonalizedadvertising", "displayName": "Allow Apple Personalized Advertising", @@ -1893,6 +3160,38 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowdefaultcallingappmodification", + "displayName": "Allow Default Calling App Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowdefaultcallingappmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdefaultcallingappmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification", + "displayName": "Allow Default Messaging App Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification_true", + "displayName": "True", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allowdefinitionlookup", "displayName": "Allow Definition Lookup", @@ -1973,6 +3272,16 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowedcamerarestrictionbundleids", + "displayName": "Allowed Camera Restriction Bundle IDs", + "options": null + }, + { + "id": "com.apple.applicationaccess_allowedexternalintelligenceworkspaceids", + "displayName": "Allowed External Intelligence Workspace IDs", + "options": null + }, { "id": "com.apple.applicationaccess_allowenablingrestrictions", "displayName": "Allow Enabling Restrictions", @@ -2071,16 +3380,16 @@ }, { "id": "com.apple.applicationaccess_allowesimoutgoingtransfers", - "displayName": "allow ESIM Outgoing Transfers", + "displayName": "Allow ESIM Outgoing Transfers", "options": [ { "id": "com.apple.applicationaccess_allowesimoutgoingtransfers_false", - "displayName": "Disabled", + "displayName": "False", "description": null }, { "id": "com.apple.applicationaccess_allowesimoutgoingtransfers_true", - "displayName": "Enabled", + "displayName": "True", "description": null } ] @@ -2279,7 +3588,7 @@ }, { "id": "com.apple.applicationaccess_allowgenmoji", - "displayName": "allow Genmoji", + "displayName": "Allow Genmoji", "options": [ { "id": "com.apple.applicationaccess_allowgenmoji_false", @@ -2570,6 +3879,22 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowmailsmartreplies", + "displayName": "Allow Mail Smart Replies", + "options": [ + { + "id": "com.apple.applicationaccess_allowmailsmartreplies_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmailsmartreplies_true", + "displayName": "True", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allowmailsummary", "displayName": "Allow Mail Summary", @@ -2620,16 +3945,16 @@ }, { "id": "com.apple.applicationaccess_allowmarketplaceappinstallation", - "displayName": "allow Marketplace App Installation", + "displayName": "Allow Marketplace App Installation", "options": [ { "id": "com.apple.applicationaccess_allowmarketplaceappinstallation_false", - "displayName": "Disabled", + "displayName": "False", "description": null }, { "id": "com.apple.applicationaccess_allowmarketplaceappinstallation_true", - "displayName": "Enabled", + "displayName": "True", "description": null } ] @@ -2714,6 +4039,38 @@ } ] }, + { + "id": "com.apple.applicationaccess_allownotestranscription", + "displayName": "Allow Notes Transcription", + "options": [ + { + "id": "com.apple.applicationaccess_allownotestranscription_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allownotestranscription_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allownotestranscriptionsummary", + "displayName": "Allow Notes Transcription Summary", + "options": [ + { + "id": "com.apple.applicationaccess_allownotestranscriptionsummary_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allownotestranscriptionsummary_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allownotificationsmodification", "displayName": "Allow Notifications Modification", @@ -3004,7 +4361,7 @@ }, { "id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation", - "displayName": "Allow Rapid Security Response Installation", + "displayName": "Allow Background Security Improvement Installation (Deprecated)", "options": [ { "id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation_false", @@ -3020,7 +4377,7 @@ }, { "id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval", - "displayName": "Allow Rapid Security Response Removal", + "displayName": "Allow Background Security Improvement Removal (Deprecated)", "options": [ { "id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval_false", @@ -3098,6 +4455,70 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowsafarihistoryclearing", + "displayName": "Allow Safari History Clearing", + "options": [ + { + "id": "com.apple.applicationaccess_allowsafarihistoryclearing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsafarihistoryclearing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsafariprivatebrowsing", + "displayName": "Allow Safari Private Browsing", + "options": [ + { + "id": "com.apple.applicationaccess_allowsafariprivatebrowsing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsafariprivatebrowsing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsafarisummary", + "displayName": "Allow Safari Summary", + "options": [ + { + "id": "com.apple.applicationaccess_allowsafarisummary_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsafarisummary_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsatelliteconnection", + "displayName": "Allow Satellite Connection", + "options": [ + { + "id": "com.apple.applicationaccess_allowsatelliteconnection_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsatelliteconnection_true", + "displayName": "True", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allowscreenshot", "displayName": "Allow Screen Shot", @@ -3370,6 +4791,22 @@ } ] }, + { + "id": "com.apple.applicationaccess_allowvisualintelligencesummary", + "displayName": "Allow Visual Intelligence Summary", + "options": [ + { + "id": "com.apple.applicationaccess_allowvisualintelligencesummary_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowvisualintelligencesummary_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.applicationaccess_allowvoicedialing", "displayName": "Allow Voice Dialing (Deprecated)", @@ -3420,16 +4857,16 @@ }, { "id": "com.apple.applicationaccess_allowwebdistributionappinstallation", - "displayName": "allow Web Distribution App Installation", + "displayName": "Allow Web Distribution App Installation", "options": [ { "id": "com.apple.applicationaccess_allowwebdistributionappinstallation_false", - "displayName": "Disabled", + "displayName": "False", "description": null }, { "id": "com.apple.applicationaccess_allowwebdistributionappinstallation_true", - "displayName": "Enabled", + "displayName": "True", "description": null } ] @@ -3465,6 +4902,16 @@ "displayName": "Top Level Setting Group Collection", "options": null }, + { + "id": "com.apple.applicationaccess_deniediccidsforimessagefacetime", + "displayName": "Denied ICCIDs For iMessage And FaceTime", + "options": null + }, + { + "id": "com.apple.applicationaccess_deniediccidsforrcs", + "displayName": "Denied ICCIDs For RCS", + "options": null + }, { "id": "com.apple.applicationaccess_enforcedfingerprinttimeout", "displayName": "Enforced Fingerprint Timeout", @@ -3472,22 +4919,22 @@ }, { "id": "com.apple.applicationaccess_enforcedsoftwareupdatedelay", - "displayName": "Enforced Software Update Delay", + "displayName": "Enforced Software Update Delay (Deprecated)", "options": null }, { "id": "com.apple.applicationaccess_enforcedsoftwareupdatemajorosdeferredinstalldelay", - "displayName": "Enforced Software Update Major OS Deferred Install Delay", + "displayName": "Enforced Software Update Major OS Deferred Install Delay (Deprecated)", "options": null }, { "id": "com.apple.applicationaccess_enforcedsoftwareupdateminorosdeferredinstalldelay", - "displayName": "Enforced Software Update Minor OS Deferred Install Delay", + "displayName": "Enforced Software Update Minor OS Deferred Install Delay (Deprecated)", "options": null }, { "id": "com.apple.applicationaccess_enforcedsoftwareupdatenonosdeferredinstalldelay", - "displayName": "Enforced Software Update Non OS Deferred Install Delay", + "displayName": "Enforced Software Update Non OS Deferred Install Delay (Deprecated)", "options": null }, { @@ -3668,7 +5115,7 @@ }, { "id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates", - "displayName": "Force Delayed App Software Updates", + "displayName": "Force Delayed App Software Updates (Deprecated)", "options": [ { "id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates_false", @@ -3684,7 +5131,7 @@ }, { "id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates", - "displayName": "Force Delayed Major Software Updates", + "displayName": "Force Delayed Major Software Updates (Deprecated)", "options": [ { "id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates_false", @@ -3700,7 +5147,7 @@ }, { "id": "com.apple.applicationaccess_forcedelayedsoftwareupdates", - "displayName": "Force Delayed Software Updates", + "displayName": "Force Delayed Software Updates (Deprecated)", "options": [ { "id": "com.apple.applicationaccess_forcedelayedsoftwareupdates_false", @@ -3869,26 +5316,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsau_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsau_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsau_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsau_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsau_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_22", "displayName": "All", "description": null } @@ -3905,26 +5437,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsca_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsca_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsca_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsca_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsca_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_22", "displayName": "All", "description": null } @@ -3941,31 +5558,121 @@ }, { "id": "com.apple.applicationaccess_ratingappsde_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsde_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsde_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsde_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsde_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_22", "displayName": "All", "description": null } ] }, + { + "id": "com.apple.applicationaccess_ratingappsexemptedbundleids", + "displayName": "Rating Apps Exempted Bundle IDs", + "options": null + }, { "id": "com.apple.applicationaccess_ratingappsfr", "displayName": "Rating Apps - France", @@ -3977,26 +5684,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsfr_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsfr_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsfr_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsfr_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsfr_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_22", "displayName": "All", "description": null } @@ -4013,26 +5805,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsgb_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsgb_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsgb_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsgb_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsgb_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_22", "displayName": "All", "description": null } @@ -4049,26 +5926,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsie_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsie_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsie_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsie_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsie_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_22", "displayName": "All", "description": null } @@ -4085,26 +6047,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsjp_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsjp_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsjp_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsjp_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsjp_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_22", "displayName": "All", "description": null } @@ -4121,26 +6168,111 @@ }, { "id": "com.apple.applicationaccess_ratingappsnz_1", - "displayName": "4+", + "displayName": "1+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsnz_2", - "displayName": "9+", + "displayName": "2+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsnz_3", - "displayName": "12+", + "displayName": "3+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsnz_4", - "displayName": "17+", + "displayName": "4+", "description": null }, { "id": "com.apple.applicationaccess_ratingappsnz_5", + "displayName": "5+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_6", + "displayName": "6+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_7", + "displayName": "7+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_8", + "displayName": "8+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_9", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_10", + "displayName": "10+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_11", + "displayName": "11+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_12", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_13", + "displayName": "13+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_14", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_15", + "displayName": "15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_16", + "displayName": "16+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_17", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_18", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_19", + "displayName": "19+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_20", + "displayName": "20+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_21", + "displayName": "21+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_22", "displayName": "All", "description": null } @@ -5067,6 +7199,27 @@ } ] }, + { + "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.appstore_com.apple.appstore", "displayName": "Top Level Setting Group Collection", @@ -5090,7 +7243,7 @@ }, { "id": "com.apple.appstore_restrict-store-disable-app-adoption", - "displayName": "restrict-store-disable-app-adoption", + "displayName": "Restrict-store-disable-app-adoption", "options": [ { "id": "com.apple.appstore_restrict-store-disable-app-adoption_false", @@ -5666,7 +7819,11 @@ "displayName": "Top Level Setting Group Collection", "options": null }, - { "id": "com.apple.cellular_apns", "displayName": "APNs", "options": null }, + { + "id": "com.apple.cellular_apns", + "displayName": "APNs", + "options": null + }, { "id": "com.apple.cellular_apns_item_allowedprotocolmask", "displayName": "Allowed Protocol Mask", @@ -5849,6 +8006,88 @@ "displayName": "Top Level Setting Group Collection", "options": null }, + { + "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred", + "displayName": "Cellular Data Preferred", + "options": [ + { + "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.cellularprivatenetwork.managed_com.apple.cellularprivatenetwork.managed", + "displayName": "com.apple.cellularprivatenetwork.managed", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_csgnetworkidentifier", + "displayName": "Csg Network Identifier", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_datasetname", + "displayName": "Data Set Name", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone", + "displayName": "Enable NR Standalone", + "options": [ + { + "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.cellularprivatenetwork.managed_geofences", + "displayName": "Geofences", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_geofences_item_geofenceid", + "displayName": "Geofence Id", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_geofences_item_latitude", + "displayName": "Latitude", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_geofences_item_longitude", + "displayName": "Longitude", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_geofences_item_radius", + "displayName": "Radius", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_networkidentifier", + "displayName": "Network Identifier", + "options": null + }, + { + "id": "com.apple.cellularprivatenetwork.managed_versionnumber", + "displayName": "Version Number", + "options": null + }, { "id": "com.apple.configurationprofile.identification_com.apple.configurationprofile.identification", "displayName": "Top Level Setting Group Collection", @@ -5856,7 +8095,7 @@ }, { "id": "com.apple.configurationprofile.identification_payloadidentification", - "displayName": "Payload Identification", + "displayName": "Payload Identification (Deprecated)", "options": null }, { @@ -6448,7 +8687,7 @@ }, { "id": "com.apple.dnssettings.managed_dnssettings_servername", - "displayName": "Server Name (Deprecated)", + "displayName": "Server Name", "options": null }, { @@ -7013,48 +9252,48 @@ ] }, { - "id": "com.apple.dock_showindicators-immutable", - "displayName": "Show Indicators Immutable", + "id": "com.apple.dock_show-process-indicators", + "displayName": "Show Process Indicators", "options": [ { - "id": "com.apple.dock_showindicators-immutable_false", + "id": "com.apple.dock_show-process-indicators_false", "displayName": "False", "description": null }, { - "id": "com.apple.dock_showindicators-immutable_true", + "id": "com.apple.dock_show-process-indicators_true", "displayName": "True", "description": null } ] }, { - "id": "com.apple.dock_show-process-indicators", - "displayName": "Show Process Indicators", + "id": "com.apple.dock_show-recents", + "displayName": "Show Recents", "options": [ { - "id": "com.apple.dock_show-process-indicators_false", + "id": "com.apple.dock_show-recents_false", "displayName": "False", "description": null }, { - "id": "com.apple.dock_show-process-indicators_true", + "id": "com.apple.dock_show-recents_true", "displayName": "True", "description": null } ] }, { - "id": "com.apple.dock_show-recents", - "displayName": "Show Recents", + "id": "com.apple.dock_showindicators-immutable", + "displayName": "Show Indicators Immutable", "options": [ { - "id": "com.apple.dock_show-recents_false", + "id": "com.apple.dock_showindicators-immutable_false", "displayName": "False", "description": null }, { - "id": "com.apple.dock_show-recents_true", + "id": "com.apple.dock_showindicators-immutable_true", "displayName": "True", "description": null } @@ -7279,6 +9518,11 @@ "displayName": "Top Level Setting Group Collection", "options": null }, + { + "id": "com.apple.domains_crosssitetrackingpreventionrelaxedapps", + "displayName": "Cross Site Tracking Prevention Relaxed Apps", + "options": null + }, { "id": "com.apple.domains_crosssitetrackingpreventionrelaxeddomains", "displayName": "Cross Site Tracking Prevention Relaxed Domains", @@ -7353,7 +9597,7 @@ }, { "id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos", - "displayName": "allow Password", + "displayName": "Allow Password", "options": [ { "id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos_false", @@ -7383,9 +9627,25 @@ } ] }, + { + "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos", + "displayName": "Allow Platform SSO OAuth Fallback", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos", - "displayName": "allow Smart Card", + "displayName": "Allow Smart Card", "options": [ { "id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos_false", @@ -7504,7 +9764,7 @@ }, { "id": "com.apple.extensiblesso_extensiondata_identityissuerautoselectfilter_kerberos", - "displayName": "identity Issuer Auto Select Filter", + "displayName": "Identity Issuer Auto Select Filter", "options": null }, { @@ -7687,7 +9947,7 @@ }, { "id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos", - "displayName": "start In Smart Card Mode", + "displayName": "Start In Smart Card Mode", "options": [ { "id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos_false", @@ -7717,6 +9977,22 @@ } ] }, + { + "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos", + "displayName": "Use Platform SSOTGT", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.extensiblesso_extensiondata_usesiteautodiscovery_kerberos", "displayName": "Use Site Auto Discovery", @@ -7807,6 +10083,22 @@ "displayName": "Administrator Groups", "options": null }, + { + "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation", + "displayName": "Allow Device Identifiers In Attestation", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation_true", + "displayName": "Allowed", + "description": null + } + ] + }, { "id": "com.apple.extensiblesso_platformsso_authenticationgraceperiod", "displayName": "Authentication Grace Period", @@ -7923,6 +10215,11 @@ "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_2", "displayName": "Groups", "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_3", + "displayName": "Temporary", + "description": null } ] }, @@ -8068,7 +10365,12 @@ }, { "id": "com.apple.familycontrols.contentfilter_filterblacklist", - "displayName": "Filter Blocklist", + "displayName": "Filter Blocklist (Deprecated)", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_filterdenylist", + "displayName": "Filter Denylist", "options": null }, { @@ -8394,6 +10696,27 @@ "displayName": "Top Level Setting Group Collection", "options": null }, + { + "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing", + "displayName": "Management Allows Known Folder Syncing", + "options": [ + { + "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.fileproviderd_managementknownfoldersyncingallowlist", + "displayName": "Management Known Folder Syncing Allow List", + "options": null + }, { "id": "com.apple.finder_com.apple.finder", "displayName": "Top Level Setting Group Collection", @@ -8548,8 +10871,16 @@ "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.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", @@ -8874,6 +11205,22 @@ } ] }, + { + "id": "com.apple.loginwindow_showinputmenu", + "displayName": "Show Input Menu", + "options": [ + { + "id": "com.apple.loginwindow_showinputmenu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_showinputmenu_true", + "displayName": "True", + "description": null + } + ] + }, { "id": "com.apple.loginwindow_showotherusers_managed", "displayName": "Show Other Users Managed", @@ -8938,6 +11285,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant", + "displayName": "Make Access-Control-Allow-Methods matching in CORS preflight spec conformant", + "options": [ + { + "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled", + "displayName": "Let screen reader users get image descriptions from Microsoft", + "options": [ + { + "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_acknowledgeddatacollectionpolicy", "displayName": "Automatically acknowledge data collection policy", @@ -8954,6 +11333,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_additionalsearchboxenabled", + "displayName": "Enable additional search box in browser", + "options": [ + { + "id": "com.apple.managedclient.preferences_additionalsearchboxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_additionalsearchboxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_addressbarmicrosoftsearchinbingproviderenabled", "displayName": "Enable Microsoft Search in Bing suggestions in the address bar", @@ -8986,6 +11381,59 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_adstransparencyenabled", + "displayName": "Configure if the ads transparency feature is enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_adstransparencyenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_adstransparencyenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_aigenthemesenabled", + "displayName": "Enables DALL-E themes generation", + "options": [ + { + "id": "com.apple.managedclient.preferences_aigenthemesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_aigenthemesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allhttpauthschemesallowedfororigins", + "displayName": "List of origins that allow all HTTP authentication", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled", + "displayName": "Allow pages with Cache-Control: no-store header to enter back/forward cache", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled_true", + "displayName": "Allowed", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_allowcertswithoutmatchingemailaddress", "displayName": "Allow S/MIME certificates without a matching email address", @@ -9034,6 +11482,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace", + "options": null + }, { "id": "com.apple.managedclient.preferences_allowedemaildomains", "displayName": "Allowed Email Domains", @@ -9129,6 +11582,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts", + "displayName": "Allow Web Authentication requests on sites with broken TLS certificates.", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts_true", + "displayName": "Allowed", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_alternateerrorpagesenabled", "displayName": "Suggest similar pages when a webpage can’t be found", @@ -9892,12 +12361,12 @@ }, { "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app", - "displayName": "Microsoft Remote Desktop", + "displayName": "Microsoft Remote Desktop (Deprecated)", "options": null }, { "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_application id", - "displayName": "Microsoft Remote Desktop Application ID", + "displayName": "Microsoft Remote Desktop Application ID (Deprecated)", "options": null }, { @@ -9923,12 +12392,12 @@ }, { "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_lcid", - "displayName": "Microsoft Remote Desktop LCID", + "displayName": "Microsoft Remote Desktop LCID (Deprecated)", "options": null }, { "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver", - "displayName": "Update channel override", + "displayName": "Update channel override (Deprecated)", "options": [ { "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_0", @@ -10282,6 +12751,68 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app", + "displayName": "Windows App", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_application id", + "displayName": "Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname", + "displayName": "Channel Name", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_lcid", + "displayName": "LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver", + "displayName": "Manifest Server", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.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", @@ -10344,6 +12875,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_askbeforecloseenabled", + "displayName": "Get user confirmation before closing a browser window with multiple tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_askbeforecloseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_askbeforecloseenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_audiocaptureallowed", "displayName": "Allow or block audio capture", @@ -10396,6 +12943,22 @@ "displayName": "Configure list of allowed authentication servers", "options": null }, + { + "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled", + "displayName": "Configure auto discard sleeping tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_autofilladdressenabled", "displayName": "Enable AutoFill for addresses", @@ -10428,6 +12991,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_autofillmembershipsenabled", + "displayName": "Save and fill memberships", + "options": [ + { + "id": "com.apple.managedclient.preferences_autofillmembershipsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autofillmembershipsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_autoimportatfirstrun", "displayName": "Automatically import another browser's data and settings at first run", @@ -10464,6 +13043,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled", + "displayName": "AutoLaunch Protocols Component Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent", "displayName": "Download embedded images", @@ -10501,6 +13096,37 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_automaticdownloadsallowedforurls", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_automaticdownloadsblockedforurls", + "displayName": "Block multiple automatic downloads in quick succession on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS", + "options": [ + { + "id": "com.apple.managedclient.preferences_automatichttpsdefault_0", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automatichttpsdefault_1", + "displayName": "(Deprecated) Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automatichttpsdefault_2", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_automaticsamplesubmission", "displayName": "Enable / disable automatic sample submissions", @@ -10517,6 +13143,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent", + "displayName": "Automatic sample submission Consent", + "options": [ + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_0", + "displayName": "none", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_1", + "displayName": "safe", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_2", + "displayName": "all", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_automaticuploadbandwidthpercentage", "displayName": "Automatic upload bandwidth percentage", @@ -10548,6 +13195,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_autoplayallowlist", + "displayName": "Allow media autoplay on specific sites", + "options": null + }, { "id": "com.apple.managedclient.preferences_autoselectcertificateforurls", "displayName": "Automatically select client certificates for these sites", @@ -10585,6 +13237,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_behaviormonitoring", + "displayName": "Behavior Monitoring", + "options": [ + { + "id": "com.apple.managedclient.preferences_behaviormonitoring_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_behaviormonitoring_1", + "displayName": "disabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_bingadssuppression", "displayName": "Block all ads on Bing search results", @@ -10649,6 +13317,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_blocktruncatedcookies", + "displayName": "Block truncated cookies", + "options": [ + { + "id": "com.apple.managedclient.preferences_blocktruncatedcookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_blocktruncatedcookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_browseraddprofileenabled", "displayName": "Enable profile creation from the Identity flyout menu or the Settings page", @@ -10837,6 +13521,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate", + "displayName": "Check for definitions update", + "options": [ + { + "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_clearbrowsingdataonexit", "displayName": "Clear browsing data when Microsoft Edge closes", @@ -10869,6 +13569,16 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_clipboardallowedforurls", + "displayName": "Allow clipboard use on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_clipboardblockedforurls", + "displayName": "Block clipboard use on specific sites", + "options": null + }, { "id": "com.apple.managedclient.preferences_cloudblocklevel", "displayName": "Cloud Block Level", @@ -10937,6 +13647,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_composeinlineenabled", + "displayName": "Compose is enabled for writing on the web", + "options": [ + { + "id": "com.apple.managedclient.preferences_composeinlineenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_composeinlineenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled", + "displayName": "Enable compression dictionary transport support", + "options": [ + { + "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_configuredonottrack", "displayName": "Configure Do Not Track", @@ -10990,6 +13732,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_configureshare", + "displayName": "Configure the Share experience", + "options": [ + { + "id": "com.apple.managedclient.preferences_configureshare_0", + "displayName": "Allow using the Share experience", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_configureshare_1", + "displayName": "Don't allow using the Share experience", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_consumerexperience", "displayName": "Control sign-in to consumer version", @@ -11006,6 +13764,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled", + "displayName": "Configure default state of Allow extensions from other stores setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled_true", + "displayName": "Allowed", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_cookiesallowedforurls", "displayName": "Allow cookies on specific sites", @@ -11021,11 +13795,74 @@ "displayName": "Limit cookies from specific websites to the current session", "options": null }, + { + "id": "com.apple.managedclient.preferences_copilotpagecontext", + "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles", + "options": [ + { + "id": "com.apple.managedclient.preferences_copilotpagecontext_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_copilotpagecontext_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request header support enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled", + "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_customhelplink", "displayName": "Specify custom help link", "options": null }, + { + "id": "com.apple.managedclient.preferences_dailyconfiguration", + "displayName": "Daily and Hourly quick scan configuration", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_dailyconfiguration_interval", + "displayName": "Start time", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_dailyconfiguration_timeofday", + "displayName": "Time of day", + "options": null + }, { "id": "com.apple.managedclient.preferences_datalossprevention", "displayName": "Use Data Loss Prevention", @@ -11042,6 +13879,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled", + "displayName": "Data URL support for SVGUseElement", + "options": [ + { + "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting_0", + "displayName": "Allow all websites to perform automatic downloads", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting_1", + "displayName": "Don't allow any website to perform automatic downloads", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultbrowsersettingenabled", "displayName": "Set Microsoft Edge as default browser", @@ -11058,6 +13927,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultclipboardsetting", + "displayName": "Default clipboard site permission", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultclipboardsetting_0", + "displayName": "Do not allow any site to use the clipboard site permission", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultclipboardsetting_1", + "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultcookiessetting", "displayName": "Configure cookies", @@ -11169,6 +14054,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting_0", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting_1", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultjavascriptsetting", "displayName": "Default JavaScript setting", @@ -11342,6 +14243,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting", + "displayName": "Set the default \"share additional operating system region\" setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_0", + "displayName": "Limited", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_1", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_2", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultstolocalopensave", "displayName": "Default to local files for open/save", @@ -11358,6 +14280,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting_0", + "displayName": "Let third-party storage partitioning to be enabled.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting_1", + "displayName": "Block third-party storage partitioning from being enabled.", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultweatherlocation", "displayName": "Default weather location", @@ -11379,6 +14317,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting_0", + "displayName": "Do not allow any site to request access to HID devices via the WebHID API", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting_1", + "displayName": "Allow sites to ask the user to grant access to a HID device", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_defaultwebusbguardsetting", "displayName": "Control use of the WebUSB API", @@ -11395,6 +14349,32 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting_0", + "displayName": "Denies the Window Management permission on all sites by default", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting_1", + "displayName": "Ask every time a site wants obtain the Window Management permission", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_definitionupdatedue", + "displayName": "Security intelligence update due (in days)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_definitionupdatesinterval", + "displayName": "Security intelligence update interval (in seconds)", + "options": null + }, { "id": "com.apple.managedclient.preferences_developertoolsavailability", "displayName": "Control where developer tools can be used", @@ -11538,6 +14518,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disablednsovertcpparsing", + "displayName": "Disable DNS over TCP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablednsovertcpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablednsovertcpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablednsparsing", + "displayName": "Disable DNS parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablednsparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablednsparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disabledonotforward", "displayName": "Disable 'Do Not Forward' options", @@ -11586,6 +14598,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disableftpparsing", + "displayName": "Disable FTP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableftpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableftpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablehttpparsing", + "displayName": "Disable HTTP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablehttpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablehttpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disablehydrationtoast", "displayName": "Disable download toasts", @@ -11602,6 +14646,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disableicmpparsing", + "displayName": "Disable ICMP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableicmpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableicmpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disableimport", "displayName": "Disable import from OLM and PST files", @@ -11618,6 +14678,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering", + "displayName": "Disable inbound connection filtering", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disableinsidercheckbox", "displayName": "Disable Office Insider membership", @@ -11650,6 +14726,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disablerdpparsing", + "displayName": "Disable RDP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablerdpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablerdpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disablerespondtomeetingwithoutresponse", "displayName": "Disable 'Do not send response'", @@ -11730,6 +14822,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disablesmtpparsing", + "displayName": "Disable SMTP parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablesmtpparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablesmtpparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablesshparsing", + "displayName": "Disable SSH parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablesshparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablesshparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disableteamsmeeting", "displayName": "Disable Microsoft Teams meeting support", @@ -11746,6 +14870,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_disabletlsparsing", + "displayName": "Disable TLS parsing", + "options": [ + { + "id": "com.apple.managedclient.preferences_disabletlsparsing_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disabletlsparsing_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_disabletutorial", "displayName": "Disable tutorial", @@ -11867,6 +15007,22 @@ "displayName": "Specify URI template of desired DNS-over-HTTPS resolver", "options": null }, + { + "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled", + "displayName": "Double Click feature in Microsoft Edge enabled (only available in China)", + "options": [ + { + "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_downloadbandwidthlimited", "displayName": "Set maximum download throughput", @@ -11900,6 +15056,11 @@ "id": "com.apple.managedclient.preferences_downloadrestrictions_3", "displayName": "Block all downloads", "description": null + }, + { + "id": "com.apple.managedclient.preferences_downloadrestrictions_4", + "displayName": "Block malicious downloads", + "description": null } ] }, @@ -11919,6 +15080,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled", + "displayName": "Allow features to download assets from the Asset Delivery Service", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_edgecollectionsenabled", "displayName": "Enable the Collections feature", @@ -11935,6 +15112,102 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery", + "displayName": "Disable DIAL protocol for cast device discovery", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgeedropenabled", + "displayName": "Enable Drop feature in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgeedropenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgeedropenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext", + "displayName": "Control access to page content for Entra ID Profiles accessing Microsoft Copilot with Enterprise Data Protection (EDP) from the Microsoft Edge sidebar", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled", + "displayName": "Microsoft Edge management extensions feedback enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy", + "displayName": "Microsoft Edge management service policy overrides platform policy.", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy", + "displayName": "Allow cloud-based Microsoft Edge management service user policies to override local user policies.", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_edgeshoppingassistantenabled", "displayName": "Shopping in Microsoft Edge Enabled", @@ -11951,6 +15224,64 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_edgesidebarappurlhostallowlist", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_edgesidebarappurlhostblocklist", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled", + "displayName": "Enable sidebar customize", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgewalletetreeenabled", + "displayName": "Edge Wallet E-Tree Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgewalletetreeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgewalletetreeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgeworkspacesenabled", + "displayName": "Enable Workspaces", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgeworkspacesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgeworkspacesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_editfavoritesenabled", "displayName": "Allows users to edit favorites", @@ -11967,6 +15298,74 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_efficiencymode", + "displayName": "Configure when efficiency mode should become active", + "options": [ + { + "id": "com.apple.managedclient.preferences_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_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": "com.apple.managedclient.preferences_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": "com.apple.managedclient.preferences_efficiencymodeenabled", + "displayName": "Efficiency mode enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_efficiencymodeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_efficiencymodeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled", + "displayName": "Enable efficiency mode when the device is connected to a power source", + "options": [ + { + "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_enableallocsiclients", "displayName": "Enable simultaneous edits for Office apps", @@ -12163,6 +15562,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_enablesetwarntoblock", + "displayName": "Enable set warn to block", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablesetwarntoblock_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablesetwarntoblock_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_enablesha1forlocalanchors", "displayName": "Allow certificates signed using SHA-1 when issued by local trust anchors", @@ -12179,6 +15594,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled", + "displayName": "TLS Encrypted ClientHello Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_enforcementlevel", "displayName": "Enforcement level", @@ -12242,6 +15673,74 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_enhancesecuritymode_0", + "displayName": "Standard mode", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymode_1", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymode_2", + "displayName": "Strict mode", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymode_3", + "displayName": "(Deprecated) Basic mode", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodebypasslistdomains", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeenforcelistdomains", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled", + "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled", + "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge (deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_enterprisehardwareplatformapienabled", "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", @@ -12382,6 +15881,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_explicitlyallowednetworkports", + "displayName": "Explicitly allowed network ports", + "options": null + }, { "id": "com.apple.managedclient.preferences_extendedlogging", "displayName": "Enable extended logging", @@ -12403,6 +15907,27 @@ "displayName": "Configure allowed extension types", "options": null }, + { + "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page", + "options": [ + { + "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings_0", + "displayName": "Allow the usage of developer mode on extensions page", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings_1", + "displayName": "Do not allow the usage of developer mode on extensions page", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_extensionextendedbackgroundlifetimeforportconnectionstourls", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.", + "options": null + }, { "id": "com.apple.managedclient.preferences_extensioninstallallowlist", "displayName": "Allow specific extensions to be installed", @@ -12423,6 +15948,53 @@ "displayName": "Configure extension and user script install sources", "options": null }, + { + "id": "com.apple.managedclient.preferences_extensioninstalltypeblocklist", + "displayName": "Blocklist for extension install types", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability", + "options": [ + { + "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_0", + "displayName": "Default browser behavior", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_1", + "displayName": "Manifest v2 is disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_2", + "displayName": "Manifest v2 is enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_3", + "displayName": "Manifest v2 is enabled for forced extensions only", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled", + "displayName": "Extensions Performance Detector enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_externalprotocoldialogshowalwaysopencheckbox", "displayName": "Show an \"Always open\" checkbox in external protocol dialog", @@ -12471,6 +16043,37 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_featureflagoverridescontrol", + "displayName": "Configure users ability to override feature flags", + "options": [ + { + "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_0", + "displayName": "Prevent users from overriding feature flags", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_1", + "displayName": "Allow users to override feature flags", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_2", + "displayName": "Allow users to override feature flags using command line arguments only", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_fileordirectorypickerwithoutgestureallowedfororigins", + "displayName": "Allow file or directory picker APIs to be called without prior user gesture", + "options": null + }, { "id": "com.apple.managedclient.preferences_filesondemandenabled", "displayName": "Enable Files On-Demand", @@ -12592,6 +16195,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled", + "displayName": "Controls whether unload event handlers can be disabled.", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled_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", @@ -12608,6 +16227,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_forcesynctypes", + "displayName": "Configure the list of types that are included for synchronization", + "options": null + }, { "id": "com.apple.managedclient.preferences_forceyoutuberestrict", "displayName": "Force minimum YouTube Restricted Mode", @@ -12661,6 +16285,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_groupids", + "displayName": "Group identifier", + "options": null + }, { "id": "com.apple.managedclient.preferences_guardagainstappmodification", "displayName": "Guard against app modification", @@ -12677,6 +16306,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_guidedswitchenabled", + "displayName": "Guided Switch Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_guidedswitchenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_guidedswitchenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_hardwareaccelerationmodeenabled", "displayName": "Use hardware acceleration when available", @@ -12693,6 +16338,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_headlessmodeenabled", + "displayName": "Control use of the Headless Mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_headlessmodeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_headlessmodeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_hidedockicon", "displayName": "Hide dock icon", @@ -12804,6 +16465,43 @@ "displayName": "Configure the list of names that will bypass the HSTS policy check", "options": null }, + { + "id": "com.apple.managedclient.preferences_httpallowlist", + "displayName": "HTTP Allowlist", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_hubssidebarenabled", + "displayName": "Show Hubs Sidebar", + "options": [ + { + "id": "com.apple.managedclient.preferences_hubssidebarenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hubssidebarenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_ignoreexclusions", + "displayName": "Ignore exclusions", + "options": [ + { + "id": "com.apple.managedclient.preferences_ignoreexclusions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_ignoreexclusions_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_imagesallowedforurls", "displayName": "Allow images on these sites", @@ -13006,6 +16704,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_inappsupportenabled", + "displayName": "In-app support Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_inappsupportenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_inappsupportenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_inprivatemodeavailability", "displayName": "Configure InPrivate mode availability", @@ -13053,6 +16767,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow websites to make requests to any network endpoint in an insecure manner.", + "options": [ + { + "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner", + "options": null + }, { "id": "com.apple.managedclient.preferences_intensivewakeupthrottlingenabled", "displayName": "Control the IntensiveWakeUpThrottling feature", @@ -13110,6 +16845,32 @@ "displayName": "Block JavaScript on specific sites", "options": null }, + { + "id": "com.apple.managedclient.preferences_javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled", + "displayName": "Enable keyboard focusable scrollers", + "options": [ + { + "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_kfmblockoptin", "displayName": "Prevent users from using the Folder Backup feature (Known Folder Move)", @@ -13242,6 +17003,22 @@ "displayName": "Revert to legacy SameSite behavior for cookies on specified sites", "options": null }, + { + "id": "com.apple.managedclient.preferences_linkedaccountenabled", + "displayName": "Enable the linked account feature", + "options": [ + { + "id": "com.apple.managedclient.preferences_linkedaccountenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_linkedaccountenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_localprovidersenabled", "displayName": "Allow suggestions from local providers", @@ -13258,6 +17035,94 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan", + "displayName": "Low priority scheduled scan", + "options": [ + { + "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines", + "displayName": "Managed Search Engines", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery", + "displayName": "Allow search engine discovery", + "options": [ + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_encoding", + "displayName": "Encoding", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_image_search_post_params", + "displayName": "Image search post params", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_image_search_url", + "displayName": "Image search URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default", + "displayName": "Is default", + "options": [ + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_keyword", + "displayName": "Keyword", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_name", + "displayName": "Name", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_search_url", + "displayName": "Search URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_managedsearchengines_item_suggest_url", + "displayName": "Suggest URL", + "options": null + }, { "id": "com.apple.managedclient.preferences_manifestserver", "displayName": "Deferred updates (Deprecated)", @@ -13491,6 +17356,86 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled", + "displayName": "Microsoft Edge Insider Promotion Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled", + "displayName": "Spell checking provided by Microsoft Editor", + "options": [ + { + "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled", + "displayName": "Synonyms are provided when using Microsoft Editor spell checker", + "options": [ + { + "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed", + "displayName": "Allow single sign-on for Microsoft personal sites using this profile", + "options": [ + { + "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events", + "options": [ + { + "id": "com.apple.managedclient.preferences_mutationeventsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_mutationeventsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_nativemessagingallowlist", "displayName": "Control which native messaging hosts users can use", @@ -13538,6 +17483,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_newpdfreaderenabled", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_newpdfreaderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newpdfreaderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes", "displayName": "Configure the background types allowed for the new tab page layout", @@ -13559,6 +17520,89 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled", + "displayName": "Hide App Launcher on Microsoft Edge new tab page", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled", + "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo", + "displayName": "New Tab Page Company Logo", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo", + "displayName": "Default logo", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo_hash", + "displayName": "Hash", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo", + "displayName": "Light logo", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo_hash", + "displayName": "Hash", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled", + "displayName": "Hide the company logo on the Microsoft Edge new tab page", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_newtabpagehidedefaulttopsites", "displayName": "Hide the default top sites from the new tab page", @@ -13580,6 +17624,37 @@ "displayName": "Configure the new tab page URL", "options": null }, + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks", + "displayName": "New Tab Page Managed Quick Links", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned", + "displayName": "Pinned", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_title", + "displayName": "Title", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_url", + "displayName": "URL", + "options": null + }, { "id": "com.apple.managedclient.preferences_newtabpageprerenderenabled", "displayName": "Enable preload of the new tab page for faster rendering", @@ -13596,6 +17671,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled", + "displayName": "Allow quick links on the new tab page", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_newtabpagesearchbox", "displayName": "Configure the new tab page search box experience", @@ -13739,6 +17830,43 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdate", + "displayName": "Enable offline security intelligence updates", + "options": [ + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdate_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdate_1", + "displayName": "disabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdateurl", + "displayName": "URL for a security intelligence updates mirror server", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig", + "displayName": "offline security intelligence updates signature verification", + "options": [ + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig_1", + "displayName": "disabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_oldisablejunkoptionsprefkey", "displayName": "Disable Junk settings", @@ -13787,6 +17915,54 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled", + "displayName": "Allow the use of your organization's branding assets from Microsoft Entra on the profile-related UI of a work profile", + "options": [ + { + "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled", + "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work profile", + "options": [ + { + "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled", + "displayName": "Origin-keyed agent clustering enabled by default", + "options": [ + { + "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_overridesecurityrestrictionsoninsecureorigin", "displayName": "Control where security restrictions on insecure origins apply", @@ -13808,6 +17984,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes", + "options": [ + { + "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_passwordmanagerenabled", "displayName": "Enable saving passwords to the password manager", @@ -13824,6 +18016,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled", + "displayName": "Restrict the length of passwords that can be saved in the Password Manager", + "options": [ + { + "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_passwordmonitorallowed", "displayName": "Allow Microsoft Edge to monitor user passwords", @@ -13898,6 +18106,54 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_pdfsecuremode", + "displayName": "Secure mode and Certificate-based Digital Signature validation in native PDF reader", + "options": [ + { + "id": "com.apple.managedclient.preferences_pdfsecuremode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_pdfsecuremode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_pdfxfaenabled", + "displayName": "XFA support in native PDF reader enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_pdfxfaenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_pdfxfaenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_performancedetectorenabled", + "displayName": "Performance Detector Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_performancedetectorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_performancedetectorenabled_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", @@ -13930,6 +18186,43 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled", + "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton", + "displayName": "Pin browser essentials toolbar button", + "options": [ + { + "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_pluginsallowedforurls", + "displayName": "Allow the Adobe Flash plug-in on specific sites", + "options": null + }, { "id": "com.apple.managedclient.preferences_pluginsblockedforurls", "displayName": "Block the Adobe Flash plug-in on specific sites", @@ -13945,6 +18238,22 @@ "displayName": "Block pop-up windows on specific sites", "options": null }, + { + "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled", + "displayName": "Enable post-quantum key agreement for TLS", + "options": [ + { + "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverride", "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", @@ -13977,6 +18286,48 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride", + "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites", + "options": [ + { + "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill", + "options": [ + { + "id": "com.apple.managedclient.preferences_primarypasswordsetting_0", + "displayName": "Automatically", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_primarypasswordsetting_1", + "displayName": "With device password", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_primarypasswordsetting_2", + "displayName": "With custom primary password", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_primarypasswordsetting_3", + "displayName": "Autofill off", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_printertypedenylist", "displayName": "Disable printer types on the deny list", @@ -13998,6 +18349,43 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_0", + "displayName": "Allow printing with and without background graphics", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_1", + "displayName": "Allow printing only without background graphics", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_2", + "displayName": "Allow printing only with background graphics", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault_0", + "displayName": "Disable background graphics printing mode by default", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault_1", + "displayName": "Enable background graphics printing mode by default", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_printingenabled", "displayName": "Enable printing", @@ -14014,6 +18402,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_printingwebpagelayout", + "displayName": "Sets layout for printing", + "options": [ + { + "id": "com.apple.managedclient.preferences_printingwebpagelayout_0", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printingwebpagelayout_1", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_printpdfasimagedefault", + "displayName": "Print PDF as Image Default", + "options": [ + { + "id": "com.apple.managedclient.preferences_printpdfasimagedefault_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printpdfasimagedefault_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_printpreviewusesystemdefaultprinter", "displayName": "Set the system default printer as the default printer", @@ -14030,6 +18450,53 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_printstickysettings", + "displayName": "Print preview sticky settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_printstickysettings_0", + "displayName": "Enable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printstickysettings_1", + "displayName": "Disable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printstickysettings_2", + "displayName": "Disable sticky settings for PDF", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printstickysettings_3", + "displayName": "Disable sticky settings for Webpages", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled", + "displayName": "Specifies whether to apply restrictions to requests to more private network endpoints", + "options": [ + { + "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_proactiveauthenabled", "displayName": "Enable Proactive Authentication", @@ -14046,6 +18513,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled", + "displayName": "Enable proactive authentication", + "options": [ + { + "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_promotionaltabsenabled", "displayName": "Enable full-tab promotional content", @@ -14078,6 +18561,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates", + "displayName": "Prompt the user to select a certificate when multiple certificates match", + "options": [ + { + "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_proxy", + "displayName": "Set proxy for MDE communication", + "options": null + }, { "id": "com.apple.managedclient.preferences_proxybypasslist", "displayName": "Configure proxy bypass rules", @@ -14124,6 +18628,73 @@ "displayName": "Configure address or URL of proxy server", "options": null }, + { + "id": "com.apple.managedclient.preferences_proxysettings", + "displayName": "Proxy Settings", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxybypasslist", + "displayName": "Proxy Bypass List", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode", + "displayName": "Proxy Mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode_0", + "displayName": "direct", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode_1", + "displayName": "auto_detect", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode_2", + "displayName": "pac_script", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode_3", + "displayName": "fixed_servers", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxymode_4", + "displayName": "system", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxypacurl", + "displayName": "Proxy PAC URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_proxysettings_proxyserver", + "displayName": "Proxy Server", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled", + "displayName": "Enable QR Code Generator", + "options": [ + { + "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_quicallowed", "displayName": "Allow QUIC protocol", @@ -14140,6 +18711,122 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_quicksearchshowminimenu", + "displayName": "Enables Microsoft Edge mini menu", + "options": [ + { + "id": "com.apple.managedclient.preferences_quicksearchshowminimenu_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_quicksearchshowminimenu_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled", + "displayName": "Manage QuickView Office files capability in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_randomizescanstarttime", + "displayName": "Randomize scheduled scan start time", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_readaloudenabled", + "displayName": "Enable Read Aloud feature in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_readaloudenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_readaloudenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers", + "displayName": "Registered Protocol Handlers", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default", + "displayName": "Default", + "options": [ + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_protocol", + "displayName": "Protocol", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled", + "displayName": "Configure Related Matches in Find on Page", + "options": [ + { + "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled", + "displayName": "Enable Related Website Sets", + "options": [ + { + "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_relaunchnotification", "displayName": "Notify a user that a browser restart is recommended or required for pending updates", @@ -14161,6 +18848,22 @@ "displayName": "Set the time period for update notifications", "options": null }, + { + "id": "com.apple.managedclient.preferences_remotedebuggingallowed", + "displayName": "Allow remote debugging", + "options": [ + { + "id": "com.apple.managedclient.preferences_remotedebuggingallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_remotedebuggingallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_resolvenavigationerrorsusewebservice", "displayName": "Enable resolution of navigation errors using a web service", @@ -14195,6 +18898,11 @@ "id": "com.apple.managedclient.preferences_restoreonstartup_2", "displayName": "Open a new tab", "description": null + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartup_3", + "displayName": "Open a list of URLs and restore the last session", + "description": null } ] }, @@ -14203,6 +18911,38 @@ "displayName": "Sites to open when the browser starts", "options": null }, + { + "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled", + "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured", + "options": [ + { + "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_restorepdfview", + "displayName": "Restore PDF view", + "options": [ + { + "id": "com.apple.managedclient.preferences_restorepdfview_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_restorepdfview_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_restrictsignintopattern", "displayName": "Restrict which accounts can be used as Microsoft Edge primary accounts", @@ -14224,6 +18964,43 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_runscanwhenidle", + "displayName": "Run scheduled scan when idle", + "options": [ + { + "id": "com.apple.managedclient.preferences_runscanwhenidle_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_runscanwhenidle_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked", + "displayName": "Allow Microsoft Edge to block navigations to external protocols in a sandboxed iframe", + "options": [ + { + "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_savecookiesonexit", "displayName": "Save cookies when Microsoft Edge closes", @@ -14287,6 +19064,22 @@ "displayName": "Scan results retention", "options": null }, + { + "id": "com.apple.managedclient.preferences_scheduledscan", + "displayName": "Scheduled Scan", + "options": [ + { + "id": "com.apple.managedclient.preferences_scheduledscan_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_scheduledscan_1", + "displayName": "disabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_screencaptureallowed", "displayName": "Allow or deny screen capture", @@ -14303,6 +19096,16 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_screencapturewithoutgestureallowedfororigins", + "displayName": "Allow screen capture without prior user gesture", + "options": null + }, { "id": "com.apple.managedclient.preferences_scrolltotextfragmentenabled", "displayName": "Enable scrolling to text specified in URL fragments", @@ -14319,6 +19122,59 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_searchfiltersenabled", + "displayName": "Search Filters Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_searchfiltersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_searchfiltersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_searchforimageenabled", + "displayName": "Search for image enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_searchforimageenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_searchforimageenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_searchinsidebarenabled", + "displayName": "Search in Sidebar enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_searchinsidebarenabled_0", + "displayName": "Enable search in sidebar", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_searchinsidebarenabled_1", + "displayName": "Disable search in sidebar for Kids Mode", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_searchinsidebarenabled_2", + "displayName": "Disable search in sidebar", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_searchsuggestenabled", "displayName": "Enable search suggestions", @@ -14366,6 +19222,11 @@ "displayName": "Block access to sensors on specific sites", "options": null }, + { + "id": "com.apple.managedclient.preferences_serialallowallportsforurls", + "displayName": "Automatically grant sites permission to connect all serial ports", + "options": null + }, { "id": "com.apple.managedclient.preferences_serialaskforurls", "displayName": "Allow the Serial API on specific sites", @@ -14376,6 +19237,38 @@ "displayName": "Block the Serial API on specific sites", "options": null }, + { + "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context", + "options": [ + { + "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sharedlinksenabled", + "displayName": "Show links shared from Microsoft 365 apps in History", + "options": [ + { + "id": "com.apple.managedclient.preferences_sharedlinksenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sharedlinksenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_sharepointonpremfrontdoorurl", "displayName": "SharePoint Server Front Door URL", @@ -14402,6 +19295,22 @@ "displayName": "SharePoint Server Tenant Name", "options": null }, + { + "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton", + "displayName": "Shows button on native PDF viewer in Microsoft Edge that allows users to sign up for Adobe Acrobat subscription", + "options": [ + { + "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_showcasticonintoolbar", "displayName": "Show the cast icon in the toolbar", @@ -14434,6 +19343,54 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled", + "displayName": "Enable insecure download warnings", + "options": [ + { + "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton", + "displayName": "Show Downloads button on the toolbar", + "options": [ + { + "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showhistorythumbnails", + "displayName": "Show thumbnail images for browsing history", + "options": [ + { + "id": "com.apple.managedclient.preferences_showhistorythumbnails_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showhistorythumbnails_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_showhomebutton", "displayName": "Show Home button on toolbar", @@ -14482,6 +19439,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled", + "displayName": "Allow notifications to set Microsoft Edge as default PDF reader", + "options": [ + { + "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showrecommendationsenabled", + "displayName": "Allow feature recommendations and browser assistance notifications from Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_showrecommendationsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showrecommendationsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_showwhatsnewonlaunch", "displayName": "Show Whats New dialog", @@ -14594,14 +19583,40 @@ "id": "com.apple.managedclient.preferences_sleepingtabstimeout_7", "displayName": "12 hours of inactivity", "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_8", + "displayName": "12 hours of inactivity", + "description": null } ] }, + { + "id": "com.apple.managedclient.preferences_smartactionsblocklist", + "displayName": "Block smart actions for a list of services", + "options": 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_smartscreendnsrequestsenabled", + "displayName": "Enable Microsoft Defender SmartScreen DNS requests", + "options": [ + { + "id": "com.apple.managedclient.preferences_smartscreendnsrequestsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smartscreendnsrequestsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_smartscreenenabled", "displayName": "Configure Microsoft Defender SmartScreen", @@ -14692,6 +19707,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_splitscreenenabled", + "displayName": "Enable split screen feature in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_splitscreenenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_splitscreenenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_sslerroroverrideallowed", "displayName": "Allow users to proceed from the HTTPS warning page", @@ -14708,6 +19739,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_sslerroroverrideallowedfororigins", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins", + "options": null + }, { "id": "com.apple.managedclient.preferences_sslversionmin", "displayName": "Minimum TLS version enabled", @@ -14793,6 +19829,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile", + "displayName": "Switch intranet sites to a work profile", + "options": [ + { + "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_syncdisabled", "displayName": "Disable synchronization of data using Microsoft sync services", @@ -14830,6 +19882,11 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins", + "options": null + }, { "id": "com.apple.managedclient.preferences_tabfreezingenabled", "displayName": "Allow freezing of background tabs", @@ -14846,6 +19903,22 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_tabservicesenabled", + "displayName": "Enable tab organization suggestions", + "options": [ + { + "id": "com.apple.managedclient.preferences_tabservicesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_tabservicesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_tags", "displayName": "Device tags", @@ -14897,6 +19970,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_textpredictionenabled", + "displayName": "Text prediction enabled by default", + "options": [ + { + "id": "com.apple.managedclient.preferences_textpredictionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_textpredictionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_thirdpartystoragepartitioningblockedfororigins", + "displayName": "Block third-party storage partitioning for these origins", + "options": null + }, { "id": "com.apple.managedclient.preferences_threattypesettings", "displayName": "Threat type settings", @@ -15039,6 +20133,43 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_typosquattingallowlistdomains", + "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled", + "displayName": "Configure Edge Website Typo Protection", + "options": [ + { + "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled", + "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_updatecache", "displayName": "Update cache server", @@ -15059,6 +20190,22 @@ "displayName": "Number of minutes for the final countdown timer", "options": null }, + { + "id": "com.apple.managedclient.preferences_updatepolicyoverride", + "displayName": "Specifies how Microsoft Edge Update handles available updates from Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_updatepolicyoverride_0", + "displayName": "silent-only - Updates are applied only when they're found by the periodic update check.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_updatepolicyoverride_1", + "displayName": "only - Updates are applied only when the user runs a manual update check. (Not all apps provide an interface for this option.)", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_updateroptimization", "displayName": "Updater optimization technique", @@ -15085,6 +20232,22 @@ "displayName": "Set maximum upload throughput", "options": null }, + { + "id": "com.apple.managedclient.preferences_uploadfromphoneenabled", + "displayName": "Enable upload files from mobile in Microsoft Edge desktop", + "options": [ + { + "id": "com.apple.managedclient.preferences_uploadfromphoneenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_uploadfromphoneenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_urlallowlist", "displayName": "Define a list of allowed URLs", @@ -15111,6 +20274,27 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction", + "options": [ + { + "id": "com.apple.managedclient.preferences_useragentreduction_0", + "displayName": "User-Agent reduction will be controllable via Experimentation", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_useragentreduction_1", + "displayName": "User-Agent reduction diabled, and not enabled by Experimentation", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_useragentreduction_2", + "displayName": "User-Agent reduction will be enabled for all origins", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_userdatadir", "displayName": "Set the user data directory", @@ -15306,6 +20490,38 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_visualsearchenabled", + "displayName": "Visual search enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_visualsearchenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_visualsearchenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_walletdonationenabled", + "displayName": "Wallet Donation Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_walletdonationenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_walletdonationenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.managedclient.preferences_weather_update_automatically", "displayName": "Disable automatic updating of weather location", @@ -15322,6 +20538,48 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist", + "displayName": "Web App Install Force List", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut", + "displayName": "Create desktop shortcut", + "options": [ + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container", + "displayName": "Default launch container", + "options": [ + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container_0", + "displayName": "tab", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container_1", + "displayName": "window", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_url", + "displayName": "URL", + "options": null + }, { "id": "com.apple.managedclient.preferences_webcaptureenabled", "displayName": "Enable web capture feature in Microsoft Edge", @@ -15338,6 +20596,53 @@ } ] }, + { + "id": "com.apple.managedclient.preferences_webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84.", + "options": [ + { + "id": "com.apple.managedclient.preferences_webcomponentsv0enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webcomponentsv0enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies", + "displayName": "Allow WebDriver to Override Incompatible Policies", + "options": [ + { + "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webhidallowalldevicesforurls", + "displayName": "Allow listed sites to connect to any HID device", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webhidaskforurls", + "displayName": "Allow the WebHID API on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webhidblockedforurls", + "displayName": "Block the WebHID API on these sites", + "options": null + }, { "id": "com.apple.managedclient.preferences_webrtcallowlegacytlsprotocols", "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC", @@ -15401,331 +20706,110 @@ "options": null }, { - "id": "com.apple.managedclient.preferences_wpadquickcheckenabled", - "displayName": "Set WPAD optimization", + "id": "com.apple.managedclient.preferences_weeklyconfiguration", + "displayName": "Weekly scheduled scan configuration", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_weeklyconfiguration_dayofweek", + "displayName": "Day of week", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype", + "displayName": "Scan type", "options": [ { - "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_false", - "displayName": "Disabled", + "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype_0", + "displayName": "quick", "description": null }, { - "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_true", - "displayName": "Enabled", + "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype_1", + "displayName": "full", "description": null } ] }, { - "id": "com.apple.mcx.filevault2_com.apple.mcx.filevault2", - "displayName": "Top Level Setting Group Collection", + "id": "com.apple.managedclient.preferences_weeklyconfiguration_timeofday", + "displayName": "Time of day", "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.managedclient.preferences_windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins", + "options": null }, { - "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout", - "displayName": "Defer Dont Ask At User Logout", + "id": "com.apple.managedclient.preferences_windowmanagementallowedforurls", + "displayName": "Allow Window Management permission on specified sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_windowmanagementblockedforurls", + "displayName": "Block Window Management permission on specified sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled", + "displayName": "Set WPAD optimization", "options": [ { - "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_false", + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_false", "displayName": "Disabled", "description": null }, { - "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_true", + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_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.managedclient.preferences_zstdcontentencodingenabled", + "displayName": "Enable zstd content encoding support", + "options": [ + { + "id": "com.apple.managedclient.preferences_zstdcontentencodingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_zstdcontentencodingenabled_true", + "displayName": "Enabled", + "description": null + } + ] }, { - "id": "com.apple.mcx.filevault2_enable", - "displayName": "Enable", + "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled", + "displayName": "Single sign-on for work or school sites using this profile enabled", "options": [ { - "id": "com.apple.mcx.filevault2_enable_0", - "displayName": "On", + "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled_false", + "displayName": "Disabled", "description": null }, { - "id": "com.apple.mcx.filevault2_enable_1", - "displayName": "Off", + "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled_true", + "displayName": "Enabled", "description": null } ] }, { - "id": "com.apple.mcx.filevault2_forceenableinsetupassistant", - "displayName": "Force Enable In Setup Assistant", + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass", + "displayName": "Ask For Secure Token Auth Bypass", "options": [ { - "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_false", + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_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", + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_true", "displayName": "True", "description": null } @@ -16394,6 +21478,305 @@ "displayName": "Time Zone", "options": 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.mcxmenuextras_airport.menu", "displayName": "AirPort", @@ -17542,7 +22925,7 @@ }, { "id": "com.apple.proxy.http.global_proxypacurl", - "displayName": "Proxy PAC URL (Deprecated)", + "displayName": "Proxy PAC URL", "options": null }, { @@ -17552,12 +22935,12 @@ }, { "id": "com.apple.proxy.http.global_proxyserver", - "displayName": "Proxy Server (Deprecated)", + "displayName": "Proxy Server", "options": null }, { "id": "com.apple.proxy.http.global_proxyserverport", - "displayName": "Proxy Server Port (Deprecated)", + "displayName": "Proxy Server Port", "options": null }, { @@ -17581,26 +22964,6 @@ "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", @@ -17642,6 +23005,26 @@ "displayName": "Module Name", "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.security.fderecoverykeyescrow_com.apple.security.fderecoverykeyescrow", "displayName": "Top Level Setting Group Collection", @@ -17989,7 +23372,7 @@ }, { "id": "com.apple.softwareupdate_allowprereleaseinstallation", - "displayName": "Allow Pre Release Installation", + "displayName": "Allow Pre Release Installation (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_allowprereleaseinstallation_false", @@ -18005,7 +23388,7 @@ }, { "id": "com.apple.softwareupdate_automaticallyinstallappupdates", - "displayName": "Automatically Install App Updates", + "displayName": "Automatically Install App Updates (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_automaticallyinstallappupdates_false", @@ -18021,7 +23404,7 @@ }, { "id": "com.apple.softwareupdate_automaticallyinstallmacosupdates", - "displayName": "Automatically Install Mac OS Updates", + "displayName": "Automatically Install Mac OS Updates (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_automaticallyinstallmacosupdates_false", @@ -18037,7 +23420,7 @@ }, { "id": "com.apple.softwareupdate_automaticcheckenabled", - "displayName": "Automatic Check Enabled", + "displayName": "Automatic Check Enabled (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_automaticcheckenabled_false", @@ -18053,7 +23436,7 @@ }, { "id": "com.apple.softwareupdate_automaticdownload", - "displayName": "Automatic Download", + "displayName": "Automatic Download (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_automaticdownload_false", @@ -18074,7 +23457,7 @@ }, { "id": "com.apple.softwareupdate_configdatainstall", - "displayName": "Config Data Install", + "displayName": "Config Data Install (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_configdatainstall_false", @@ -18090,7 +23473,7 @@ }, { "id": "com.apple.softwareupdate_criticalupdateinstall", - "displayName": "Critical Update Install", + "displayName": "Critical Update Install (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_criticalupdateinstall_false", @@ -18106,7 +23489,7 @@ }, { "id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install", - "displayName": "Restrict Software Update Require Admin To Install", + "displayName": "Restrict Software Update Require Admin To Install (Deprecated)", "options": [ { "id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install_false", @@ -18161,6 +23544,107 @@ } ] }, + { + "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.system.logging_com.apple.system.logging", "displayName": "Top Level Setting Group Collection", @@ -18427,107 +23911,6 @@ "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", @@ -21141,6 +26524,22 @@ "displayName": "Plugin Bundle ID", "options": null }, + { + "id": "com.apple.webcontent-filter_safarihistoryretentionenabled", + "displayName": "Safari History Retention Enabled", + "options": [ + { + "id": "com.apple.webcontent-filter_safarihistoryretentionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.webcontent-filter_safarihistoryretentionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.apple.webcontent-filter_serveraddress", "displayName": "Server Address", @@ -21156,6 +26555,40 @@ "displayName": "User Name", "options": 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.apple.xsan.preferences_com.apple.xsan.preferences", "displayName": "Top Level Setting Group Collection", @@ -21198,38 +26631,20 @@ ] }, { - "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.accesscontrolallowmethodsincorspreflightspecconformant", + "displayName": "Make Access-Control-Allow-Methods matching in CORS preflight spec conformant", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.accesscontrolallowmethodsincorspreflightspecconformant_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.accesscontrolallowmethodsincorspreflightspecconformant_true", + "displayName": "Enabled", + "description": null + } + ] }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.accessibilityimagelabelsenabled", @@ -21247,6 +26662,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled", + "displayName": "Enable additional search box in browser", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbareditingenabled", "displayName": "Configure address bar editing", @@ -21265,7 +26696,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled", - "displayName": "Enable Microsoft Search in Bing suggestions in the address bar", + "displayName": "Enable Microsoft Search in Bing suggestions in the address bar (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled_false", @@ -21279,6 +26710,38 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled", + "displayName": "Enable Microsoft Bing trending suggestions in the address bar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled", + "displayName": "Enable Work Search suggestions in the address bar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.adssettingforintrusiveadssites", "displayName": "Ads setting for sites with intrusive ads", @@ -21311,6 +26774,38 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled", + "displayName": "Enables DALL-E themes generation", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled", + "displayName": "Allow pages with Cache-Control: no-store header to enter back/forward cache", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.allowdeletingbrowserhistory", "displayName": "Enable deleting browser and download history", @@ -21334,7 +26829,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu", - "displayName": "Allow users to access the games menu", + "displayName": "Allow users to access the games menu (Deprecated)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu_false", @@ -21396,11 +26891,43 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications", + "displayName": "Allows system notifications", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications_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.allowwebauthnwithbrokentlscerts", + "displayName": "Allow Web Authentication requests on sites with broken TLS certificates.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowwebauthnwithbrokentlscerts_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowwebauthnwithbrokentlscerts_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled", "displayName": "Suggest similar pages when a webpage can't be found", @@ -21486,6 +27013,38 @@ "displayName": "Sites that can access audio capture devices without requesting permission", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled", + "displayName": "Configure auto discard sleeping tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended", + "displayName": "Configure auto discard sleeping tabs (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled", "displayName": "Enable AutoFill for addresses", @@ -21613,9 +27172,19 @@ "displayName": "Block multiple automatic downloads in quick succession on specific sites", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticfullscreenallowedforurls", + "displayName": "Allow automatic full screen on specified sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticfullscreenblockedforurls", + "displayName": "Block automatic full screen on specified sites", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault", - "displayName": "Configure Automatic HTTPS", + "displayName": "Configure Automatic HTTPS (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_disableautomatichttps", @@ -21636,7 +27205,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended", - "displayName": "Configure Automatic HTTPS (users can override)", + "displayName": "Configure Automatic HTTPS (Obsolete) (users can override)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended_disableautomatichttps", @@ -21707,6 +27276,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled", + "displayName": "Control the behavior for the cancel dialog produced by the beforeunload event (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.blockexternalextensions", "displayName": "Blocks external extensions from being installed", @@ -21755,6 +27340,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies", + "displayName": "Block truncated cookies (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.browsernetworktimequeriesenabled", "displayName": "Allow queries to a Browser Network Time service", @@ -21776,6 +27377,79 @@ "displayName": "Browsing Data Lifetime Settings", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled", + "displayName": "Allow pages to use the built-in AI APIs.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed", + "displayName": "Allow users to manage installed CA certificates.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_all", + "displayName": "Allow users to manage all certificates", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_useronly", + "displayName": "Allow users to manage user certificates", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_none", + "displayName": "Disallow users from managing certificates", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificates", + "displayName": "TLS server certificates that should be trusted by Microsoft Edge", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificateswithconstraints", + "displayName": "TLS certificates that should be trusted by Microsoft Edge for server authentication with constraints", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cadistrustedcertificates", + "displayName": "TLS certificates that should be distrusted by Microsoft Edge for server authentication", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cahintcertificates", + "displayName": "TLS certificates that are not trusted or distrusted but can be used in path-building for server authentication", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled", + "displayName": "Use user-added TLS certificates from platform trust stores for server authentication", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforcas", "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes", @@ -21783,7 +27457,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforlegacycas", - "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (Obsolete)", "options": null }, { @@ -21864,6 +27538,11 @@ "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_pinterest_suggestions", + "displayName": "Pinterest suggestions", + "description": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_collections_share", "displayName": "Sharing of Collections", @@ -21888,6 +27567,43 @@ "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_onenote", "displayName": "Send collection to Microsoft OneNote", "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_pinterest", + "displayName": "Send collection to Pinterest", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled", + "displayName": "Control access to Microsoft 365 Copilot writing assistance in Microsoft Edge for Business", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled", + "displayName": "Enable compression dictionary transport support", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled_true", + "displayName": "Enabled", + "description": null } ] }, @@ -21986,6 +27702,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled", + "displayName": "Configure default state of Allow extensions from other stores setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_recommended", "displayName": "Configure default state of Allow extensions from other stores setting (users can override)", @@ -22017,6 +27749,38 @@ "displayName": "Limit cookies from specific websites to the current session", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext", + "displayName": "Control Copilot with Commercial Data Protection access to page context for Microsoft Entra ID profiles (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext", + "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.corsnonwildcardrequestheaderssupport", "displayName": "CORS non-wildcard request header support enabled", @@ -22033,6 +27797,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain", + "displayName": "Control whether passkey creation will default to iCloud Keychain.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.crossoriginwebassemblymodulesharingenabled", "displayName": "Specifies whether WebAssembly modules can be sent cross-origin (Obsolete)", @@ -22051,7 +27831,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled", - "displayName": "Enable CryptoWallet feature", + "displayName": "Enable CryptoWallet feature (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled_false", @@ -22065,23 +27845,55 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled", + "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.customhelplink", "displayName": "Specify custom help link", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled", + "displayName": "Data URL support for SVGUseElement", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled_true", + "displayName": "Enabled", + "description": 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", + "displayName": "Allow all websites to perform multiple downloads without requiring a user gesture between each download.", "description": null }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting_blockautomaticdownloads", - "displayName": "Don't allow any website to perform automatic downloads", + "displayName": "Prevent all websites from performing multiple downloads, even after a user gesture.", "description": null } ] @@ -22224,6 +28036,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting", + "displayName": "Control use of JavaScript optimizers", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting_allowjavascriptoptimizer", + "displayName": "Enable advanced JavaScript optimizations on all sites", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting_blockjavascriptoptimizer", + "displayName": "Disable advanced JavaScript optimizations on all sites", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptsetting", "displayName": "Default JavaScript setting", @@ -22490,6 +28318,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting_allowpartitioning", + "displayName": "Allow third-party storage partitioning by default.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting_blockpartitioning", + "displayName": "Disable third-party storage partitioning.", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebbluetoothguardsetting", "displayName": "Control use of the Web Bluetooth API", @@ -22538,6 +28382,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting_blockwindowmanagement", + "displayName": "Denies the Window Management permission on all sites by default", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting_askwindowmanagement", + "displayName": "Ask every time a site wants obtain the Window Management permission", + "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", @@ -22559,6 +28419,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled", + "displayName": "Enable deleting undecryptable passwords", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability", "displayName": "Control where developer tools can be used", @@ -22596,6 +28472,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled", + "displayName": "Enable Discover access to page contents for AAD profiles (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.displaycapturepermissionspolicyenabled", "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped (Obsolete)", @@ -22737,6 +28629,38 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled", + "displayName": "Machine learning powered autofill suggestions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended", + "displayName": "Machine learning powered autofill suggestions (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgecollectionsenabled", "displayName": "Enable the Collections feature", @@ -22803,7 +28727,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled", - "displayName": "Enhance images enabled", + "displayName": "Enhance images enabled (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled_false", @@ -22817,9 +28741,25 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext", + "displayName": "Control Copilot access to Microsoft Edge page content for Entra account user profiles when using Copilot in the Microsoft Edge sidepane", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled", - "displayName": "Enable Follow service in Microsoft Edge", + "displayName": "Enable Follow service in Microsoft Edge (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled_false", @@ -22833,6 +28773,38 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled", + "displayName": "Control access to AI-enhanced search in History", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled", + "displayName": "Microsoft Edge management extensions feedback enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled", "displayName": "Shopping in Microsoft Edge Enabled", @@ -22865,6 +28837,85 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostallowlist", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostblocklist", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostforcelist", + "displayName": "Control which apps are forced to be shown in Microsoft Edge sidebar", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled", + "displayName": "Enable Wallet Checkout feature", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended", + "displayName": "Enable Wallet Checkout feature (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled", + "displayName": "Edge Wallet E-Tree Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended", + "displayName": "Edge Wallet E-Tree Enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeworkspacesenabled", "displayName": "Enable Workspaces", @@ -22943,7 +28994,23 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_basicmode", - "displayName": "Basic mode", + "displayName": "(Deprecated) Basic mode", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass", + "displayName": "Allow users to bypass Enhanced Security Mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass_true", + "displayName": "Enabled", "description": null } ] @@ -22974,6 +29041,38 @@ "displayName": "Configure the list of domains for which enhance security mode will always be enforced", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled", + "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled", + "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisehardwareplatformapienabled", "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", @@ -23008,7 +29107,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled", - "displayName": "Re-enable the Event.path API until Microsoft Edge version 115", + "displayName": "Re-enable the Event.path API until Microsoft Edge version 115 (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled_false", @@ -23032,6 +29131,11 @@ "displayName": "Disable download file type extension-based warnings for specified file types on domains", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.exemptsmartscreendownloadwarnings", + "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes", "displayName": "Configure allowed extension types", @@ -23068,6 +29172,27 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings_allow", + "displayName": "Allow the usage of developer mode on extensions page", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings_disallow", + "displayName": "Do not allow the usage of developer mode on extensions page", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionextendedbackgroundlifetimeforportconnectionstourls", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallallowlist", "displayName": "Allow specific extensions to be installed", @@ -23088,11 +29213,78 @@ "displayName": "Configure extension and user script install sources", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstalltypeblocklist", + "displayName": "Blocklist for extension install types", + "options": { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstalltypeblocklist_command_line", + "displayName": "Blocks extensions from being loaded from command line", + "description": null + } + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_default", + "displayName": "Default browser behavior", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_disable", + "displayName": "Manifest v2 is disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_enable", + "displayName": "Manifest v2 is enabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_enableforforcedextensions", + "displayName": "Manifest v2 is enabled for forced extensions only", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsettings", "displayName": "Configure extension management settings", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled", + "displayName": "Extensions Performance Detector enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended", + "displayName": "Extensions Performance Detector enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.externalprotocoldialogshowalwaysopencheckbox", "displayName": "Show an \"Always open\" checkbox in external protocol dialog", @@ -23162,6 +29354,11 @@ "displayName": "Fetch keepalive duration on shutdown", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.fileordirectorypickerwithoutgestureallowedfororigins", + "displayName": "Allow file or directory picker APIs to be called without prior user gesture", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemreadaskforurls", "displayName": "Allow read access via the File System API on these sites", @@ -23237,7 +29434,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent", - "displayName": "Enable or disable freezing the User-Agent string at major version 99", + "displayName": "Enable or disable freezing the User-Agent string at major version 99 (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent_default", @@ -23314,6 +29511,43 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled", + "displayName": "Enable Gamer Mode (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended", + "displayName": "Enable Gamer Mode (Obsolete) (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.geolocationblockedforurls", + "displayName": "Block geolocation on these sites", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.globallyscopehttpauthcacheenabled", "displayName": "Enable globally scoped HTTP auth cache", @@ -23330,6 +29564,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled", + "displayName": "Guided Switch Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage", "displayName": "Set the new tab page as the home page", @@ -23377,6 +29627,53 @@ "displayName": "Configure the list of names that will bypass the HSTS policy check", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpallowlist", + "displayName": "HTTP Allowlist", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode", + "displayName": "Allow HTTPS-Only Mode to be enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_allowed", + "displayName": "Don't restrict users' HTTPS-Only Mode setting", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_disallowed", + "displayName": "Don't allow users to enable any HTTPS-Only Mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_force_enabled", + "displayName": "Force enable HTTPS-Only Mode in Strict mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_force_balanced_enabled", + "displayName": "Force enable HTTPS-Only Mode in Balanced Mode", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled", + "displayName": "Enable automatic HTTPS upgrades", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled", "displayName": "Show Hubs Sidebar", @@ -23409,6 +29706,72 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeout", + "displayName": "Delay before running idle actions", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions", + "displayName": "Actions to run when the computer is idle", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_close_browsers", + "displayName": "Close Browsers", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_browsing_history", + "displayName": "Clear Browsing History", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_download_history", + "displayName": "Clear Download History", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_cookies_and_other_site_data", + "displayName": "Clear Cookies and Other Site Data", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_cached_images_and_files", + "displayName": "Clear Cached Images and Files", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_password_signin", + "displayName": "Clear Password sign in", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_autofill", + "displayName": "Clear Autofill", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_site_settings", + "displayName": "Clear Site Settings", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_reload_pages", + "displayName": "Reload Pages", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_sign_out", + "displayName": "Sign Out", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_close_tabs", + "displayName": "Close Tabs", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.imagesallowedforurls", "displayName": "Allow images on these sites", @@ -23421,7 +29784,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled", - "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled_false", @@ -23437,7 +29800,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled", - "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled_false", @@ -23900,7 +30263,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled", - "displayName": "Enable warnings for insecure forms", + "displayName": "Enable warnings for insecure forms (Deprecated)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled_false", @@ -23916,7 +30279,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed", - "displayName": "Specifies whether to allow websites to make requests to more-private network endpoints", + "displayName": "Specifies whether to allow websites to make requests to any network endpoint in an insecure manner. (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed_false", @@ -23932,7 +30295,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowedforurls", - "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner (Obsolete)", "options": null }, { @@ -24187,6 +30550,22 @@ "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.internetexplorerintegrationzoneidentifiermhtfileallowed", + "displayName": "Automatically open downloaded MHT or MHTML files from the web in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationzoneidentifiermhtfileallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationzoneidentifiermhtfileallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodecleardataonexitenabled", "displayName": "Clear history for IE and IE mode every time you exit", @@ -24267,6 +30646,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive", + "displayName": "Keep the active Microsoft Edge window with an Internet Explorer mode tab always in the foreground.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive_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", @@ -24319,6 +30714,32 @@ "displayName": "Block JavaScript from using JIT on these sites", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptoptimizerallowedforsites", + "displayName": "Allow JavaScript optimization on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptoptimizerblockedforsites", + "displayName": "Block JavaScript optimizations on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled", + "displayName": "Enable keyboard focusable scrollers (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabled", "displayName": "Enable default legacy SameSite cookie behavior setting (Obsolete)", @@ -24337,12 +30758,12 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabledfordomainlist", - "displayName": "Revert to legacy SameSite behavior for cookies on specified sites", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites (Obsolete)", "options": null }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled", - "displayName": "Enable the linked account feature", + "displayName": "Enable the linked account feature (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled_false", @@ -24372,6 +30793,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled", + "displayName": "Allows users to translate videos to different languages.", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled", "displayName": "Enable Windows to search local Microsoft Edge browsing data", @@ -24404,6 +30841,48 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessallowedforurls", + "displayName": "Allow sites to make requests to local network endpoints.", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessblockedforurls", + "displayName": "Block sites from making requests to local network endpoints.", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled", + "displayName": "Specifies whether to block requests from public websites to devices on a user's local network. (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout", + "displayName": "Specifies whether to opt out of Local Network Access restrictions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled", "displayName": "Allow suggestions from local providers", @@ -24456,6 +30935,43 @@ "displayName": "Manage Search Engines (users can override)", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mandatoryextensionsforinprivatenavigation", + "displayName": "Specify extensions users must allow in order to navigate using InPrivate mode", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled", + "displayName": "Control whether Microsoft 365 Copilot Chat shows in the Microsoft Edge for Business toolbar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended", + "displayName": "Control whether Microsoft 365 Copilot Chat shows in the Microsoft Edge for Business toolbar (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftedgeinsiderpromotionenabled", "displayName": "Microsoft Edge Insider Promotion Enabled", @@ -24536,6 +31052,38 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly", + "displayName": "Force Windows executable Native Messaging hosts to launch directly", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessagingallowlist", "displayName": "Control which native messaging hosts users can use", @@ -24678,14 +31226,51 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled", + "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled_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.newtabpagecompanylogobackplatecolor", + "displayName": "Set the company logo backplate color on the new tab page.", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled", + "displayName": "Hide the company logo on the Microsoft Edge new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled", - "displayName": "Allow Microsoft News content on the new tab page", + "displayName": "Allow Microsoft content on the new tab page", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled_false", @@ -24857,6 +31442,58 @@ "displayName": "Block notifications on specific sites", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.onbulkdataentryenterpriseconnector", + "displayName": "Configuration policy for bulk data entry for Microsoft Edge for Business Data Loss Prevention Connectors", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.onfileattachedenterpriseconnector", + "displayName": "Configuration policy for files attached for Microsoft Edge for Business Data Loss Prevention Connectors", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.onprintenterpriseconnector", + "displayName": "Configuration policy for print for Microsoft Edge for Business Data Loss Prevention Connectors", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.onsecurityevententerpriseconnector", + "displayName": "Configuration policy for Microsoft Edge for Business Reporting Connectors", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended", + "displayName": "Allow the use of your organization's branding assets from Microsoft Entra on the profile-related UI of a work or school profile (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended", + "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work or school profile (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.originagentclusterdefaultenabled", "displayName": "Origin-keyed agent clustering enabled by default", @@ -24905,6 +31542,70 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage", + "displayName": "Manage Blob URL Partitioning During Fetching and Navigation", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled", + "displayName": "Enable exporting saved passwords from Password Manager", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled_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", @@ -25032,6 +31733,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled", + "displayName": "Enable Password reveal button", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_recommended", "displayName": "Enable Password reveal button (users can override)", @@ -25080,6 +31797,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled", + "displayName": "Use out-of-process iframe PDF Viewer", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfxfaenabled", "displayName": "XFA support in native PDF reader enabled", @@ -25144,6 +31877,70 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled", + "displayName": "Personalize my top sites in Customize Sidebar enabled by default", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled", + "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton", + "displayName": "Pin browser essentials toolbar button", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended", + "displayName": "Pin browser essentials toolbar button (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.pluginsallowedforurls", "displayName": "Allow the Adobe Flash plug-in on specific sites (Obsolete)", @@ -25164,6 +31961,27 @@ "displayName": "Block pop-up windows on specific sites", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.precisegeolocationallowedforurls", + "displayName": "Allow precise geolocation on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled", + "displayName": "Allow SpeculationRules prefetch for ServiceWorker-controlled URLs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverride", "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", @@ -25196,6 +32014,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride", + "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride_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", @@ -25343,6 +32177,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault", + "displayName": "Print PDF as Image Default", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.printpostscriptmode", "displayName": "Print PostScript Mode", @@ -25464,6 +32314,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled", + "displayName": "Enable proactive authentication", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.promptfordownloadlocation", "displayName": "Ask where to save downloaded files", @@ -25611,6 +32477,11 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.registeredprotocolhandlers", + "displayName": "Register protocol handlers", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.registeredprotocolhandlers_recommended", "displayName": "Register protocol handlers (users can override)", @@ -25618,7 +32489,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled", - "displayName": "Configure Related Matches in Find on Page", + "displayName": "Configure Related Matches in Find on Page (Obsolete)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled_false", @@ -25632,6 +32503,27 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled", + "displayName": "Enable Related Website Sets (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsoverrides", + "displayName": "Override Related Website Sets. (Deprecated)", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice", "displayName": "Enable resolution of navigation errors using a web service", @@ -25666,7 +32558,7 @@ }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup", - "displayName": "Action to take on startup", + "displayName": "Action to take on Microsoft Edge startup", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisnewtabpage", @@ -25682,12 +32574,17 @@ "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisurls", "displayName": "Open a list of URLs", "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupislastsessionandurls", + "displayName": "Open a list of URLs and restore the last session", + "description": null } ] }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended", - "displayName": "Action to take on startup (users can override)", + "displayName": "Action to take on Microsoft Edge startup (users can override)", "options": [ { "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisnewtabpage", @@ -25703,6 +32600,11 @@ "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisurls", "displayName": "Open a list of URLs", "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupislastsessionandurls", + "displayName": "Open a list of URLs and restore the last session", + "description": null } ] }, @@ -25806,6 +32708,11 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.scarewareblockerallowlistdomains", + "displayName": "Configure the list of domains where Microsoft Edge Scareware blockers don't run", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowed", "displayName": "Allow or deny screen capture", @@ -25827,6 +32734,11 @@ "displayName": "Allow Desktop, Window, and Tab capture by these origins", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.screencapturewithoutgestureallowedfororigins", + "displayName": "Allow screen capture without prior user gesture", + "options": null + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.scrolltotextfragmentenabled", "displayName": "Enable scrolling to text specified in URL fragments", @@ -25875,6 +32787,22 @@ } ] }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled", + "displayName": "Search for image enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, { "id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled", "displayName": "Search in Sidebar enabled", @@ -25933,6 +32861,22 @@ "displayName": "Websites or domains that don't need permission to use direct Security Key attestation", "options": null }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.selectparserrelaxationenabled", + "displayName": "Controls whether the new HTML parser behavior for the element is enabled", "options": [ { - "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_0", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_selectparserrelaxationenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_1", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_selectparserrelaxationenabled_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", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled", + "displayName": "Control the new behavior for event dispatching on disabled form controls", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowcortana", - "displayName": "Allow Cortana", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled", + "displayName": "Control Javascript setTimeout() function minimum timeout.", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowcortana_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowcortana_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery", - "displayName": "Allow Device Discovery", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings", + "displayName": "Settings for Tab Organizer", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery_0", - "displayName": "Block", - "description": "Disabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery_1", - "displayName": "Allow", - "description": "Enabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowfindmydevice", - "displayName": "Allow Find My Device", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings", + "displayName": "Settings for Tab Organizer (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_0", + "displayName": "Allow Tab Organizer and improve AI models.", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_1", + "displayName": "Allow Tab Organizer without improving AI models.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_2", + "displayName": "Do not allow Tab Organizer.", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment", - "displayName": "Allow Manual MDM Unenrollment", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles", - "displayName": "Allow Save As Of Office Files", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings", + "displayName": "Managed toolbar avatar label setting", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowscreencapture", - "displayName": "Allow Screen Capture", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings", + "displayName": "Managed toolbar avatar label setting (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowscreencapture_0", - "displayName": "Not allowed.", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings_0", + "displayName": "Always display management label", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowscreencapture_1", - "displayName": "Allowed.", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings_1", + "displayName": "Display management labels for 30s", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim", - "displayName": "Allow SIM Error Dialog Prompt When No SIM", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled", + "displayName": "Control the nesting threshold before which Javascript setTimeout() function start being clamped", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_0", - "displayName": "Not allowed.", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_1", - "displayName": "Allowed.", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings", - "displayName": "Allow Sync My Settings", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled", + "displayName": "Control the URL parameter filter feature", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_0", - "displayName": "Block", - "description": "Sync settings are not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_1", - "displayName": "Allow", - "description": "Sync settings allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures", - "displayName": "Allow Windows Consumer Features", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed", + "displayName": "Allow Pepper to use a new decoder for hardware accelerated video decoding.", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures_0", - "displayName": "Block", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures_1", - "displayName": "Allow", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_allowwindowstips", - "displayName": "Allow Windows Tips", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled", + "displayName": "Control the User-Agent Client Hints GREASE Update feature.", "options": [ { - "id": "device_vendor_msft_policy_config_experience_allowwindowstips_0", - "displayName": "Block", - "description": "Disabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_allowwindowstips_1", - "displayName": "Allow", - "description": "Enabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_configurechaticon", - "displayName": "Configure Chat Icon", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess", + "displayName": "Force WebSQL to be enabled.", "options": [ { - "id": "device_vendor_msft_policy_config_experience_configurechaticon_0", - "displayName": "Windows default", - "description": "Not configured" + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_configurechaticon_1", - "displayName": "Show", - "description": "Show" - }, + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled", + "displayName": "Force WebSQL in non-secure contexts to be enabled.", + "options": [ { - "id": "device_vendor_msft_policy_config_experience_configurechaticon_2", - "displayName": "Hide", - "description": "Hide" + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_configurechaticon_3", - "displayName": "Disabled", - "description": "Disabled" + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent", - "displayName": "Disable Cloud Optimized Content", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled", + "displayName": "Enable zstd content-encoding support", "options": [ { - "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_0", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled_0", "displayName": "Disabled", - "description": "Disabled." + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_1", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled_1", "displayName": "Enabled", - "description": "Enabled." + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent", - "displayName": "Disable Consumer Account State Content", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled", + "displayName": "Allow download deep scanning for Safe Browsing-enabled users", "options": [ { - "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_0", - "displayName": "Disabled.", - "description": "Disabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_1", - "displayName": "Enabled.", - "description": "Enabled." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_donotshowfeedbacknotifications", - "displayName": "Do Not Show Feedback Notifications", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed", + "displayName": "Allow Safe Browsing Proxied Real Time Checks", "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_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed_0", + "displayName": "Disabled", + "description": null }, { - "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_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings", - "displayName": "Do Not Sync Browser Settings", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled", + "displayName": "Allow Safe Browsing Surveys", "options": [ { - "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_2", - "displayName": "Disable Syncing", - "description": "Disable Syncing" + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_0", - "displayName": "Allow syncing", - "description": "Allow syncing" + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing", - "displayName": "Prevent Users From Turning On Browser Syncing", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled", + "displayName": "Bind Google credentials to a device", "options": [ { - "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_0", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled_0", "displayName": "Disabled", - "description": "Allowed/turned on. Users can sync the browser settings." + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_1", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled_1", "displayName": "Enabled", - "description": "Prevented/turned off." + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_experience_showlockonusertile", - "displayName": "Show Lock On User Tile", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist", + "displayName": "Enterprise profile separation secondary domain allowlist", "options": [ { - "id": "device_vendor_msft_policy_config_experience_showlockonusertile_0", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_0", "displayName": "Disabled", - "description": "The lock option is not displayed in the User Tile menu." + "description": null }, { - "id": "device_vendor_msft_policy_config_experience_showlockonusertile_1", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_1", "displayName": "Enabled", - "description": "The lock option is displayed in the User Tile menu." + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_exploitguard_exploitprotectionsettings", - "displayName": "Exploit Protection Settings", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_profileseparationdomainexceptionlistdesc", + "displayName": "Enterprise profile separation secondary domain allowlist (Device)", "options": null }, { - "id": "device_vendor_msft_policy_config_federatedauthentication_enablewebsigninforprimaryuser", - "displayName": "Enable Web Sign In For Primary User", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl", + "displayName": "WebRTC per URL IP Handling", "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_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_0", + "displayName": "Disabled", + "description": null }, { - "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_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_feeds_feedsenabled", - "displayName": "Enable News and interests", + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_webrtciphandlingurl", + "displayName": "WebRTC per URL IP Handling (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement", + "displayName": "Enable post-quantum key agreement for WebRTC", "options": [ { - "id": "device_vendor_msft_policy_config_feeds_feedsenabled_0", - "displayName": "Not allowed.", - "description": "Not allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_feeds_feedsenabled_1", - "displayName": "Allowed.", - "description": "Allowed." + "id": "device_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", - "displayName": "Allow Option To Show Network", + "id": "device_vendor_msft_policy_config_clouddesktop_boottocloudmode", + "displayName": "Boot To Cloud Mode", "options": [ { - "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_0", - "displayName": "Not Allowed.", - "description": "Not Allowed." + "id": "device_vendor_msft_policy_config_clouddesktop_boottocloudmode_0", + "displayName": "Not Configured", + "description": "Not Configured" }, { - "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_1", - "displayName": "Allowed.", - "description": "Allowed." + "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_fileexplorer_allowoptiontoshowthispc", - "displayName": "Allow Option To Show This PC", + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout", + "displayName": "Set Max Connection Timeout", "options": [ { - "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_0", - "displayName": "Not Allowed.", - "description": "Not Allowed." + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_5", + "displayName": "5 min", + "description": "5 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_6", + "displayName": "6 min", + "description": "6 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_7", + "displayName": "7 min", + "description": "7 min" }, { - "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_13", - "displayName": "Documents, Pictures, Downloads", - "description": "Documents, Pictures, Downloads" + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_8", + "displayName": "8 min", + "description": "8 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_9", + "displayName": "9 min", + "description": "9 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_10", + "displayName": "10 min", + "description": "10 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_11", + "displayName": "11 min", + "description": "11 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_12", + "displayName": "12 min", + "description": "12 min" + }, { - "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_clouddesktop_setmaxconnectiontimeout_13", + "displayName": "13 min", + "description": "13 min" }, { - "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_1", - "displayName": "Removable Drives", - "description": "Removable Drives" + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_14", + "displayName": "14 min", + "description": "14 min" }, { - "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_2", - "displayName": "Sync roots", - "description": "Sync roots" + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_15", + "displayName": "15 min", + "description": "15 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_16", + "displayName": "16 min", + "description": "16 min" }, { - "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_4", - "displayName": "Local Drives", - "description": "Local Drives" + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_17", + "displayName": "17 min", + "description": "17 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_18", + "displayName": "18 min", + "description": "18 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_19", + "displayName": "19 min", + "description": "19 min" }, { - "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_clouddesktop_setmaxconnectiontimeout_20", + "displayName": "20 min", + "description": "20 min" } ] }, { - "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer", - "displayName": "Turn off Data Execution Prevention for Explorer", + "id": "device_vendor_msft_policy_config_connectivity_allowbluetooth", + "displayName": "Allow Bluetooth", "options": [ { - "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer_0", - "displayName": "Disabled", - "description": null + "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_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_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_fileexplorer_turnoffheapterminationoncorruption_1", - "displayName": "Enabled", - "description": null + "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_filesystem_devdriveattachpolicy", - "displayName": "Dev drive filter attach policy", + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardata", + "displayName": "Allow Cellular Data", "options": [ { - "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy_0", - "displayName": "Disabled", - "description": null + "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_filesystem_devdriveattachpolicy_1", - "displayName": "Enabled", - "description": null + "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_filesystem_devdriveattachpolicy_devdriveattachpolicy", - "displayName": "Filter list (Device)", - "options": null - }, - { - "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive", - "displayName": "Enable dev drive", + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardataroaming", + "displayName": "Allow Cellular Data Roaming", "options": [ { - "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_0", - "displayName": "Disabled", - "description": null + "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_filesystem_enabledevdrive_1", - "displayName": "Enabled", - "description": null + "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_filesystem_enabledevdrive_devdriveallowantivirusfilter", - "displayName": "Let antivirus filter protect dev drives (Device)", + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices", + "displayName": "Allow Connected Devices", "options": [ { - "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_0", - "displayName": "False", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices_0", + "displayName": "Block", + "description": "Disable (CDP service not available)." }, { - "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_1", - "displayName": "True", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices_1", + "displayName": "Allow", + "description": "Allow (CDP service available)." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions", - "displayName": "Clean-up Invalid Sessions", + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking", + "displayName": "Allow Phone PC Linking", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking_0", + "displayName": "Block", + "description": "Do not link." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking_1", + "displayName": "Allow", + "description": "Allow phone-PC linking." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin", - "displayName": "Roam Recycle Bin", + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection", + "displayName": "Allow USB Connection", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk", - "displayName": "VHD Compact Disk", + "id": "device_vendor_msft_policy_config_connectivity_allowvpnovercellular", + "displayName": "Allow VPN Over Cellular", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowvpnovercellular_0", + "displayName": "Block", + "description": "VPN is not allowed over cellular." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~ccd_ccdcachedirectory", - "displayName": "Cache Directory", + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular", + "displayName": "Allow VPN Roaming Over Cellular", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "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", + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp", + "displayName": "Turn off printing over HTTP", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_0", + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_1", + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp_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", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularoperatorsettingspage", + "displayName": "Disable Cellular Operator Settings Page (Windows Insiders only)", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_0", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularoperatorsettingspage_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_1", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularoperatorsettingspage_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularsettingspage", + "displayName": "Disable Cellular Settings Page (Windows Insiders only)", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_0", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularsettingspage_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_1", + "id": "device_vendor_msft_policy_config_connectivity_disablecellularsettingspage_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface", - "displayName": "Driver Interface", + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp", + "displayName": "Turn off downloading of print drivers over HTTP", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_0", + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_1", + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~logging_loggingenabled_0", + "id": "device_vendor_msft_policy_config_connectivity_disableinternetdownloadforwebpublishingandonlineorderingwizards_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_1", + "id": "device_vendor_msft_policy_config_connectivity_disableinternetdownloadforwebpublishingandonlineorderingwizards_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled", - "displayName": "", + "id": "device_vendor_msft_policy_config_connectivity_disallownetworkconnectivityactivetests", + "displayName": "Disallow Network Connectivity Active Tests", "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_connectivity_disallownetworkconnectivityactivetests_1", + "displayName": "Allow", + "description": "Allow" }, { - "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_connectivity_disallownetworkconnectivityactivetests_0", + "displayName": "Block", + "description": "Block" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility", - "displayName": "Font Visibility", + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths", + "displayName": "Hardened UNC Paths", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_0", + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_1", + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher", - "displayName": "FrxLauncher", + "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_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_0", + "id": "device_vendor_msft_policy_config_connectivity_prohibitinstallationandconfigurationofnetworkbridge_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_1", + "id": "device_vendor_msft_policy_config_connectivity_prohibitinstallationandconfigurationofnetworkbridge_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin", - "displayName": "IE plugin", + "id": "device_vendor_msft_policy_config_connectivity_usecellularwhenwifipoor", + "displayName": "Use Cellular When Wi Fi Poor (Windows Insiders only)", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_0", + "id": "device_vendor_msft_policy_config_connectivity_usecellularwhenwifipoor_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_1", + "id": "device_vendor_msft_policy_config_connectivity_usecellularwhenwifipoor_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor", - "displayName": "Java rule editor", + "id": "device_vendor_msft_policy_config_controlpolicyconflict_mdmwinsovergp", + "displayName": "MDM Wins Over GP", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_controlpolicyconflict_mdmwinsovergp_0", + "displayName": "", + "description": "" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~logging_logginglogdirectory", - "displayName": "Log Directory", + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon", + "displayName": "Turn on convenience PIN sign-in", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_0", + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_1", + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon_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", + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword", + "displayName": "Turn off picture password sign-in", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_0", + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_1", + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword_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", + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials", + "displayName": "Disable Automatic Re Deployment Credentials", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_0", + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials_0", "displayName": "Disabled", - "description": null + "description": "Enable the visibility of the credentials for Autopilot Reset." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_1", + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials_1", "displayName": "Enabled", - "description": null + "description": "Disable visibility of the credentials for Autopilot Reset." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer", - "displayName": "ODFC Container", + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials", + "displayName": "Remote host allows delegation of non-exportable credentials", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_0", + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_1", + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility", - "displayName": "Printer Visibility", + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal", + "displayName": "Do not display the password reveal button", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_0", + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_1", + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart", - "displayName": "Process Start", + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators", + "displayName": "Enumerate administrator accounts on elevation", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_0", + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_1", + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool", - "displayName": "Profile Configuration Tool", + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy", + "displayName": "Allow Fips Algorithm Policy", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy_1", + "displayName": "Allow", + "description": "Allow" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy_0", + "displayName": "Block", + "description": "Block" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer", - "displayName": "Profile Container", + "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_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_dataprotection_allowdirectmemoryaccess_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_dataprotection_allowdirectmemoryaccess_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation", - "displayName": "Rule Compilation", + "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_fslogixv1~policy~fslogix~logging_loggingrulecompilation_0", + "id": "device_vendor_msft_policy_config_datausage_setcost3g_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation_1", + "id": "device_vendor_msft_policy_config_datausage_setcost3g_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor", - "displayName": "Rule Editor", + "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_fslogixv1~policy~fslogix~logging_loggingruleeditor_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_1", + "displayName": "Unrestricted", "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", + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_2", + "displayName": "Fixed", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_3", + "displayName": "Variable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming", - "displayName": "Search Roaming", + "id": "device_vendor_msft_policy_config_datausage_setcost4g", + "displayName": "Set 4G Cost", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_0", + "id": "device_vendor_msft_policy_config_datausage_setcost4g_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_1", + "id": "device_vendor_msft_policy_config_datausage_setcost4g_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices", - "displayName": "Services", + "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_fslogixv1~policy~fslogix~logging_loggingservices_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_datausage_setcost4g_cost4g_dropdownlist_1", + "displayName": "Unrestricted", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer", - "displayName": "Access Network as Computer Object", + "id": "device_vendor_msft_policy_config_defender_allowarchivescanning", + "displayName": "Allow Archive Scanning", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl", - "displayName": "Attached VHD SDDL", + "id": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring", + "displayName": "Allow Behavior Monitoring", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_1", - "displayName": "Enabled", - "description": null + "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_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", + "id": "device_vendor_msft_policy_config_defender_allowcloudprotection", + "displayName": "Allow Cloud Protection", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive", - "displayName": "Include OneDrive", + "id": "device_vendor_msft_policy_config_defender_allowemailscanning", + "displayName": "Allow Email Scanning", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonenote", - "displayName": "Include OneNote", + "id": "device_vendor_msft_policy_config_defender_allowfullscanonmappednetworkdrives", + "displayName": "Allow Full Scan On Mapped Network Drives", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp", - "displayName": "Include OneNote UWP", + "id": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning", + "displayName": "Allow Full Scan Removable Drive Scanning", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook", - "displayName": "Include Outlook", + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem", + "displayName": "[Deprecated] Allow Intrusion Prevention System", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization", - "displayName": "Include Outlook Personalization", + "id": "device_vendor_msft_policy_config_defender_allowioavprotection", + "displayName": "Allow scanning of all downloaded files and attachments", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowioavprotection_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowioavprotection_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint", - "displayName": "Include SharePoint", + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection", + "displayName": "Allow On Access Protection", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype", - "displayName": "Include Skype", + "id": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring", + "displayName": "Allow Realtime Monitoring", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeskype_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeteams", - "displayName": "Include Teams", + "id": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles", + "displayName": "Allow Scanning Network Files", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcincludeteams_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd", - "displayName": "Is Dynamic (VHD)", + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning", + "displayName": "Allow Script Scanning", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount", - "displayName": "Locked Retry Count", + "id": "device_vendor_msft_policy_config_defender_allowuseruiaccess", + "displayName": "Allow User UI Access", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_odfclockedretrycount", - "displayName": "Locked Retry Count (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductiononlyexclusions", + "displayName": "Attack Surface Reduction Only Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval", - "displayName": "Locked Retry Interval", + "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_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd", - "displayName": "", + "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_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd_0", - "displayName": "Do not mirror OST to VHD", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd_1", - "displayName": "Copy OST to VHD", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_odfcnumbersessionvhdstokeep", - "displayName": "Number Session VHD(s) To Keep (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath", - "displayName": "Outlook Folder Path", + "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_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile", - "displayName": "Prevent Login With Temp Profile", + "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_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_odfcreattachcount", - "displayName": "Reattach Count (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval", - "displayName": "Reattach Interval", + "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_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_odfcreattachinterval", - "displayName": "Reattach Interval (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype", - "displayName": "Redirect Type", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts", + "displayName": "Block execution of potentially obfuscated scripts", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype_2", - "displayName": "FSLogix Redirection", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_warn", + "displayName": "Warn", "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_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff", - "displayName": "Remove Orphaned OST Files On Logoff", + "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_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch", - "displayName": "", + "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_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_1", - "displayName": "Single-user Search", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_odfcsizeinmbs", - "displayName": "Size In MBs (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "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": "", + "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_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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_2", - "displayName": "Local DiffDisk", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_odfcvhdlocations", - "displayName": "VHD Locations (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize", - "displayName": "VHDX Sector Size", + "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_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_odfcvhdxsectorsize_4096", - "displayName": "4 KB", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx", - "displayName": "Volume Type (VHD or VHDX)", + "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_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx_vhdx", - "displayName": "VHDX", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds", - "displayName": "Volume Wait Time (milliseconds)", + "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_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_odfcccdlocations", - "displayName": "CCD Locations (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs", - "displayName": "CCD Max Cache Size in MBs", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode", + "displayName": "Block rebooting machine in Safe Mode", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_odfcccdunregistertimeout", - "displayName": "CCD Unregister Timeout (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister", - "displayName": "Clear Cache On Forced Unregister", + "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_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_off", + "displayName": "Off", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_odfchealthyprovidersrequiredforregister", - "displayName": "Healthy Providers Required For Register (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister", - "displayName": "Healthy Providers Required For Unregister", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools", + "displayName": "Block use of copied or impersonated system tools", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_odfcdiffdiskparentfolderpath", - "displayName": "Diff Disk Parent Folder Path (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname", - "displayName": "Flip Flop Profile Directory Name", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers", + "displayName": "Block Webshell creation for Servers", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch", - "displayName": "SID Directory Name Match", + "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_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_odfcsiddirectorynamepattern", - "displayName": "SID Directory Name Pattern (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch", - "displayName": "VHD Name Match", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware", + "displayName": "Use advanced protection against ransomware", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_off", + "displayName": "Off", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_block", + "displayName": "Block", "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", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_audit", + "displayName": "Audit", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_warn", + "displayName": "Warn", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_odfcvhdnamepattern", - "displayName": "VHD Name Pattern (Device)", + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer", - "displayName": "Access Network as Computer Object", + "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_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_0", + "id": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_1", + "id": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl", - "displayName": "Attached VHD SDDL", + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel", + "displayName": "Cloud Block Level", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel_0", + "displayName": "Default State", + "description": "Default State" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_profilesattachedvhdsddl", - "displayName": "Attached VHD SDDL (Device)", + "id": "device_vendor_msft_policy_config_defender_cloudextendedtimeout", + "displayName": "Cloud Extended Timeout", "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_defender_controlledfolderaccessallowedapplications", + "displayName": "Controlled Folder Access Allowed Applications", + "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply", - "displayName": "Delete Local Profile When VHD Should Apply", + "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_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_0", + "id": "device_vendor_msft_policy_config_defender_disablecatchupfullscan_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_1", + "id": "device_vendor_msft_policy_config_defender_disablecatchupfullscan_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan", + "displayName": "Disable Catchup Quick Scan", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_0", + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_1", + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages", - "displayName": "Install Appx Packages", + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess", + "displayName": "Enable Controlled Folder Access", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_0", + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_1", + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_1", "displayName": "Enabled", - "description": null - } - ] - }, - { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd", - "displayName": "Is Dynamic (VHD)", - "options": [ + "description": "Enabled" + }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_2", + "displayName": "Audit Mode", + "description": "Audit Mode" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff", - "displayName": "Keep Local Directory (after logoff)", + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority", + "displayName": "Enable Low CPU Priority", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_0", + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_1", + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount", - "displayName": "Locked Retry Count", + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection", + "displayName": "Enable Network Protection", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_0", + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_profileslockedretrycount", - "displayName": "Locked Retry Count (Device)", + "id": "device_vendor_msft_policy_config_defender_excludedextensions", + "displayName": "Excluded Extensions", "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_defender_excludedpaths", + "displayName": "Excluded Paths", + "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_profileslockedretryinterval", - "displayName": "Locked Retry Interval (Device)", + "id": "device_vendor_msft_policy_config_defender_excludedprocesses", + "displayName": "Excluded Processes", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode", - "displayName": "Outlook Cached Mode", + "id": "device_vendor_msft_policy_config_defender_puaprotection", + "displayName": "PUA Protection", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode_0", - "displayName": "Disabled", - "description": null + "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_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_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_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile", - "displayName": "Prevent Login With Temp Profile", + "id": "device_vendor_msft_policy_config_defender_realtimescandirection", + "displayName": "Real Time Scan Direction", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_0", - "displayName": "Disabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl", - "displayName": "Profile Directory SDDL", + "id": "device_vendor_msft_policy_config_defender_scanparameter", + "displayName": "Scan Parameter", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_scanparameter_1", + "displayName": "Quick scan", + "description": "Quick scan" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_scanparameter_2", + "displayName": "Full scan", + "description": "Full scan" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_profilesprofiledirectorysddl", - "displayName": "Profile Directory SDDL (Device)", + "id": "device_vendor_msft_policy_config_defender_schedulequickscantime", + "displayName": "Schedule Quick Scan Time", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype", - "displayName": "Profile Type", + "id": "device_vendor_msft_policy_config_defender_schedulescanday", + "displayName": "Schedule Scan Day", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_schedulescanday_0", + "displayName": "Every day", + "description": "Every day" }, { - "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_defender_schedulescanday_1", + "displayName": "Sunday", + "description": "Sunday" + }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_0", - "displayName": "Normal Profile", - "description": null + "id": "device_vendor_msft_policy_config_defender_schedulescanday_2", + "displayName": "Monday", + "description": "Monday" }, { - "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_defender_schedulescanday_3", + "displayName": "Tuesday", + "description": "Tuesday" }, { - "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_defender_schedulescanday_4", + "displayName": "Wednesday", + "description": "Wednesday" }, { - "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_defender_schedulescanday_5", + "displayName": "Thursday", + "description": "Thursday" + }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_schedulescanday_6", + "displayName": "Friday", + "description": "Friday" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilesreattachcount_profilesreattachcount", - "displayName": "Reattach Count (Device)", + "id": "device_vendor_msft_policy_config_defender_schedulescantime", + "displayName": "Schedule Scan Time", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval", - "displayName": "Reattach Interval", + "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_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent_0", + "displayName": "Always prompt.", + "description": "Always prompt." }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_1", - "displayName": "Enabled", - "description": null + "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_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_profilesreattachinterval", - "displayName": "Reattach Interval (Device)", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction", + "displayName": "Threat Severity Default Action", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff", - "displayName": "Reboot On User Logoff", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats", + "displayName": "Remediation action for High severity threats", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_0", - "displayName": "Disabled", + "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_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", "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", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_remove", + "displayName": "Remove. Removes files from system.", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_1", - "displayName": "Reboot on any logoff", + "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_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_2", - "displayName": "Reboot only on any FSLogix Profile logoff", + "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_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder", - "displayName": "Redirection XML Source Folder", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats", + "displayName": "Remediation action for Low severity threats", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_0", - "displayName": "Disabled", + "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_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", "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", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_remove", + "displayName": "Remove. Removes files from system.", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype", - "displayName": "", - "options": [ + }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_1", - "displayName": "Legacy Redirection", + "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_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_2", - "displayName": "FSLogix Redirection", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_block", + "displayName": "Block. Blocks file execution.", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff", - "displayName": "Remove Orphaned OST Files On Logoff", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats", + "displayName": "Remediation action for Moderate severity threats", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_0", - "displayName": "Disabled", + "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_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", "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", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_remove", + "displayName": "Remove. Removes files from system.", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~profiles_profilesroamsearch", - "displayName": "Roam Search", - "options": [ + }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_0", - "displayName": "Disabled", + "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_fslogixv1~policy~fslogix~profiles_profilesroamsearch_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_block", + "displayName": "Block. Blocks file execution.", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch", - "displayName": "", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats", + "displayName": "Remediation action for Severe threats", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_0", - "displayName": "Disabled", + "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_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_1", - "displayName": "Single-user Search", + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_2", - "displayName": "Multi-user Search", + "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_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath", - "displayName": "Set Temp Folders to Local Path", + "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_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching_0", + "displayName": "Not allowed", + "description": "Not allowed" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_1", + "id": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching_1", + "displayName": "Allowed", + "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": "Not Set", + "description": "Not Set" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodisallowcacheserverdownloadsonvpn_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath", - "displayName": "", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode", + "displayName": "DO Download Mode", "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_deliveryoptimization_dodownloadmode_0", + "displayName": "HTTP only, no peering", + "description": "HTTP only, no peering" }, { - "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_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_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath_2", - "displayName": "Redirect INetCache to local drive", - "description": null + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_2", + "displayName": "HTTP blended with peering across a private group", + "description": "HTTP blended with peering across a private group" }, { - "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_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": "HTTP only, no peering, no use of DO cloud service", + "description": "HTTP only, no peering, no use of DO cloud service" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_100", + "displayName": "Bypass mode, deprecated in Windows 11", + "description": "Bypass mode, deprecated in Windows 11" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff", - "displayName": "Shutdown On User Logoff", + "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_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_0", + "displayName": "Not Set", + "description": "Not Set" }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_1", - "displayName": "Enabled", - "description": null + "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 Option ID", + "description": "DHCP Option ID" + }, + { + "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": "Entra ID Tenant ID", + "description": "Entra ID Tenant ID" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff", - "displayName": "", + "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_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby_0", + "displayName": "None", + "description": "None" }, { - "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_deliveryoptimization_dorestrictpeerselectionby_1", + "displayName": "Subnet mask", + "description": "Subnet mask" }, { - "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_deliveryoptimization_dorestrictpeerselectionby_2", + "displayName": "Local discovery (DNS-SD)", + "description": "Local discovery (DNS-SD)" } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl", - "displayName": "SID Directory SDDL", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth", + "displayName": "Set Business Hours to Limit Background Download Bandwidth", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_0", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_1", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_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", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom", + "displayName": "From: (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_0", + "displayName": "12 AM", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_profilessizeinmbs", - "displayName": "Size In MBs (Device)", + "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_fslogixv1~policy~fslogix~profiles_profilesvhdlocations", - "displayName": "VHD Locations", + "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_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_0", + "displayName": "12 AM", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth", + "displayName": "Set Business Hours to Limit Foreground Download Bandwidth", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_0", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_1", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize", - "displayName": "", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom", + "displayName": "From: (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_512", - "displayName": "512 bytes", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_0", + "displayName": "12 AM", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_4096", - "displayName": "4 KB", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_1", + "displayName": "1 AM", "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", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_2", + "displayName": "2 AM", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_profilesvolumewaittimemilliseconds", - "displayName": "Volume Wait Time (milliseconds) (Device)", + "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_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations", - "displayName": "CCD Locations", + "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_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_0", + "displayName": "12 AM", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_1", - "displayName": "Enabled", + "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_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_profilesccdlocations", - "displayName": "CCD Locations (Device)", + "id": "device_vendor_msft_policy_config_deliveryoptimization_dovpnkeywords", + "displayName": "DO Vpn Keywords", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs", - "displayName": "CCD Max Cache Size in MBs", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources", + "displayName": "Enable App Installer Additional Sources", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_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)", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_additionalsources", + "displayName": "Additional Sources: (Device)", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout", - "displayName": "CCD Unregister Timeout", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources", + "displayName": "Enable App Installer Allowed Sources", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_profilesccdunregistertimeout", - "displayName": "CCD Unregister Timeout (Device)", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_allowedsources", + "displayName": "Allowed Sources: (Device)", "options": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister", - "displayName": "Clear Cache on Forced Unregister", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller", + "displayName": "Enable App Installer", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff", - "displayName": "Clear Cache on Logoff", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablebypasscertificatepinningformicrosoftstore", + "displayName": "Enable App Installer Microsoft Store Source Certificate Validation Bypass", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablebypasscertificatepinningformicrosoftstore_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablebypasscertificatepinningformicrosoftstore_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister", - "displayName": "Healthy Providers Required For Register", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource", + "displayName": "Enable App Installer Default Source", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures", + "displayName": "Enable App Installer Experimental Features", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride", + "displayName": "Enable App Installer Hash Override", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalarchivemalwarescanoverride", + "displayName": "Enable App Installer Local Archive Malware Scan Override", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalarchivemalwarescanoverride_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalarchivemalwarescanoverride_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder", - "displayName": "No Profile Containing Folder", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles", + "displayName": "Enable App Installer Local Manifest Files", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch", - "displayName": "SID Directory Name Match", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource", + "displayName": "Enable App Installer Microsoft Store Source", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol", + "displayName": "Enable App Installer ms-appinstaller protocol", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings", + "displayName": "Enable App Installer Settings", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings_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", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagercommandlineinterfaces", + "displayName": "Enable Windows Package Manager command line interfaces", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagercommandlineinterfaces_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagercommandlineinterfaces_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)", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagerconfiguration", + "displayName": "Enable Windows Package Manager Configuration", "options": [ { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_0", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagerconfiguration_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_1", + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablewindowspackagemanagerconfiguration_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx", - "displayName": "", + "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_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx_vhd", - "displayName": "VHD", + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx_vhdx", - "displayName": "VHDX", + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_games_allowadvancedgamingservices", - "displayName": "Allow Advanced Gaming Services", + "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_games_allowadvancedgamingservices_0", - "displayName": "Block", - "description": "Not allowed." + "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_games_allowadvancedgamingservices_1", - "displayName": "Allow", - "description": "Allowed." + "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_handwriting_paneldefaultmodedocked", - "displayName": "Panel Default Mode Docked", + "id": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity", + "displayName": "Enable Virtualization Based Security", "options": [ { - "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked_0", - "displayName": "Disabled", - "description": "Disabled." + "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_handwriting_paneldefaultmodedocked_1", - "displayName": "Enabled", - "description": "Enabled." + "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_humanpresence_forceinstantlock", - "displayName": "Force Instant Lock", + "id": "device_vendor_msft_policy_config_deviceguard_lsacfgflags", + "displayName": "Credential Guard", "options": [ { - "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_2", - "displayName": "Forced Off.", - "description": "ForcedOff." + "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_humanpresence_forceinstantlock_1", - "displayName": "Forced On.", - "description": "ForcedOn." + "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_humanpresence_forceinstantlock_0", - "displayName": "Default To User Choice.", - "description": "DefaultToUserChoice." + "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_humanpresence_forceinstantwake", - "displayName": "Force Instant Wake", + "id": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation", + "displayName": "Machine Identity Isolation", "options": [ { - "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_2", - "displayName": "Forced Off.", - "description": "ForcedOff." + "id": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation_0", + "displayName": "(Disabled) Machine password is only LSASS-bound and stored in $MACHINE.ACC registry key.", + "description": "(Disabled) Machine password is only LSASS-bound and stored in $MACHINE.ACC registry key." }, { - "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_1", - "displayName": "Forced On.", - "description": "ForcedOn." + "id": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation_1", + "displayName": "(Enabled in audit mode) Machine password both LSASS-bound and IUM-bound. It is stored in $MACHINE.ACC and $MACHINE.ACC.IUM registry keys.", + "description": "(Enabled in audit mode) Machine password both LSASS-bound and IUM-bound. It is stored in $MACHINE.ACC and $MACHINE.ACC.IUM registry keys." }, { - "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_0", - "displayName": "Default To User Choice.", - "description": "DefaultToUserChoice." + "id": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation_2", + "displayName": "(Enabled in enforcement mode) Machine password is only IUM-bound and stored in $MACHINE.ACC.IUM registry key.", + "description": "(Enabled in enforcement mode) Machine password is only IUM-bound and stored in $MACHINE.ACC.IUM registry key." } ] }, { - "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout", - "displayName": "Force Lock Timeout", + "id": "device_vendor_msft_policy_config_deviceguard_requiremicrosoftsignedbootchain", + "displayName": "Require Microsoft Signed Boot Chain", + "options": { + "id": "device_vendor_msft_policy_config_deviceguard_requiremicrosoftsignedbootchain_1", + "displayName": "Require Microsoft Signed Boot Chain.", + "description": "Require Microsoft Signed Boot Chain." + } + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures", + "displayName": "Require Platform Security Features", "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_deviceguard_requireplatformsecurityfeatures_1", + "displayName": "Turns on VBS with Secure Boot.", + "description": "Turns on VBS with Secure Boot." }, { - "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_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_internetexplorer_addsearchprovider", - "displayName": "Add a specific list of search providers to the user's list of search providers", + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_allowdevicehealthmonitoring", + "displayName": "Allow Device Health Monitoring", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider_0", - "displayName": "Disabled", - "description": null + "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_internetexplorer_addsearchprovider_1", - "displayName": "Enabled", - "description": null + "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_internetexplorer_allowactivexfiltering", - "displayName": "Turn on ActiveX Filtering", + "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_internetexplorer_allowactivexfiltering_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist", - "displayName": "Add-on List", + "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_internetexplorer_allowaddonlist_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids_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", + "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_internetexplorer_allowcertificateaddressmismatchwarning", - "displayName": "Turn on certificate address mismatch warning", + "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_internetexplorer_allowcertificateaddressmismatchwarning_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", - "displayName": "Allow deleting browsing history on exit", + "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_internetexplorer_allowdeletingbrowsinghistoryonexit_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_enableinstallationpolicylayering_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_enableinstallationpolicylayering_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", - "displayName": "Turn on Enhanced Protected Mode", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork", + "displayName": "Prevent automatic download of applications associated with device metadata", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork_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", + "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_internetexplorer_allowenhancedsuggestionsinaddressbar_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofdevicesnotdescribedbyotherpolicysettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofdevicesnotdescribedbyotherpolicysettings_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", + "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_internetexplorer_allowenterprisemodefromtoolsmenu_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_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", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_list", + "displayName": "Prevented device IDs", "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist", - "displayName": "Use the Enterprise Mode IE website list", + "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_internetexplorer_allowenterprisemodesitelist_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_retroactive_0", + "displayName": "False", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_retroactive_1", + "displayName": "True", "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)", + "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_internetexplorer_allowfallbacktossl3_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions", - "displayName": "Allow insecure fallback for:", + "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_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", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_retroactive_0", + "displayName": "False", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_3", - "displayName": "All Sites", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_retroactive_1", + "displayName": "True", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist", - "displayName": "Use Policy List of Internet Explorer 7 sites", + "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_internetexplorer_allowinternetexplorer7policylist_0", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_1", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_compatview_sitelist", - "displayName": "List of sites (Device)", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_list", + "displayName": "Prevented Classes", "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode", - "displayName": "Turn on Internet Explorer Standards Mode for local intranet", + "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_internetexplorer_allowinternetexplorerstandardsmode_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_retroactive_0", + "displayName": "False", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_retroactive_1", + "displayName": "True", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate", - "displayName": "Internet Zone Template", + "id": "device_vendor_msft_policy_config_devicelock_accountlockoutpolicy", + "displayName": "Account Lockout Policy", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword", + "displayName": "Allow Simple Device Password", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", - "displayName": "Internet", + "id": "device_vendor_msft_policy_config_devicelock_alphanumericdevicepasswordrequired", + "displayName": "Alphanumeric Device Password Required", "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_devicelock_alphanumericdevicepasswordrequired_0", + "displayName": "Password or Alphanumeric PIN required.", + "description": "Password or Alphanumeric PIN required." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_5", - "displayName": "Medium High", - "description": null + "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_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_4", - "displayName": "High", - "description": null + "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_internetexplorer_allowintranetzonetemplate", - "displayName": "Intranet Zone Template", + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled", + "displayName": "Device Password Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled_0", + "displayName": "Enabled", + "description": "Enabled" }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled_1", + "displayName": "Disabled", + "description": "Disabled" } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", - "displayName": "Intranet", + "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_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", - "displayName": "Low", - "description": null + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters_1", + "displayName": "Digits only", + "description": "Digits only" }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", - "displayName": "Medium Low", - "description": null + "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_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", - "displayName": "Medium", - "description": null + "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_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_5", - "displayName": "Medium High", + "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_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_4", - "displayName": "High", + "id": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", - "displayName": "Local Machine Zone Template", + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow", + "displayName": "Prevent enabling lock screen slide show", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_0", + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_1", + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", - "displayName": "Local Machine Zone", + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode", + "displayName": "Configure Multiple Display Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", - "displayName": "Low", - "description": null + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode_0", + "displayName": "Default.", + "description": "Default." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_2", - "displayName": "Medium Low", - "description": null + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode_1", + "displayName": "Internal Only.", + "description": "Internal Only." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_3", - "displayName": "Medium", - "description": null + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode_2", + "displayName": "External Only.", + "description": "External Only." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_5", - "displayName": "Medium High", - "description": null + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode_3", + "displayName": "Clone.", + "description": "Clone." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_4", - "displayName": "High", - "description": null + "id": "device_vendor_msft_policy_config_display_configuremultipledisplaymode_4", + "displayName": "Extend.", + "description": "Extend." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", - "displayName": "Locked-Down Internet Zone Template", + "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_internetexplorer_allowlockeddowninternetzonetemplate_0", + "id": "device_vendor_msft_policy_config_display_enableperprocessdpi_0", "displayName": "Disabled", - "description": null + "description": "Disable." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_1", + "id": "device_vendor_msft_policy_config_display_enableperprocessdpi_1", "displayName": "Enabled", - "description": null + "description": "Enable." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", - "displayName": "Locked-Down Internet", + "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_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_dmaguard_deviceenumerationpolicy_0", + "displayName": "Block all (Most restrictive)", + "description": "Block all (Most restrictive)" }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_5", - "displayName": "Medium High", - "description": null + "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_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_4", - "displayName": "High", - "description": null + "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_internetexplorer_allowlockeddownintranetzonetemplate", - "displayName": "Locked-Down Intranet Zone Template", + "id": "device_vendor_msft_policy_config_eap_allowtls1_3", + "displayName": "Allow TLS13", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_0", - "displayName": "Disabled", - "description": null + "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_internetexplorer_allowlockeddownintranetzonetemplate_1", - "displayName": "Enabled", - "description": null + "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_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", - "displayName": "Locked-Down Intranet", + "id": "device_vendor_msft_policy_config_education_enableeduthemes", + "displayName": "Enable Edu Themes", "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_education_enableeduthemes_0", + "displayName": "Disabled.", + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_3", - "displayName": "Medium", - "description": null - }, + "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_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_5", - "displayName": "Medium High", - "description": null + "id": "device_vendor_msft_policy_config_education_iseducationenvironment_0", + "displayName": "Disabled.", + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_4", - "displayName": "High", - "description": null + "id": "device_vendor_msft_policy_config_education_iseducationenvironment_1", + "displayName": "Enabled.", + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", - "displayName": "Locked-Down Local Machine Zone Template", + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings", + "displayName": "Customize consent settings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_0", + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_1", + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", - "displayName": "Locked-Down Local Machine Zone", + "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_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", + "id": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_4", - "displayName": "High", + "id": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", - "displayName": "Locked-Down Restricted Sites Zone Template", + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification", + "displayName": "Display Error Notification", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_0", + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_1", + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", - "displayName": "Locked-Down Restricted Sites", + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata", + "displayName": "Do not send additional data", "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", + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_4", - "displayName": "High", + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata_1", + "displayName": "Enabled", "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", + "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_internetexplorer_allowonewordentry_0", + "id": "device_vendor_msft_policy_config_errorreporting_preventcriticalerrordisplay_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry_1", + "id": "device_vendor_msft_policy_config_errorreporting_preventcriticalerrordisplay_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode", - "displayName": "Allow \"Save Target As\" in Internet Explorer mode", + "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_internetexplorer_allowsavetargetasiniemode_0", + "id": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_1", + "id": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist", - "displayName": "Site to Zone Assignment List", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog", + "displayName": "Specify the maximum log file size (KB)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_0", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_1", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_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", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_channel_logmaxsize", + "displayName": "Maximum Log Size (KB)", "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate", - "displayName": "Locked-Down Trusted Sites Zone Template", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog", + "displayName": "Specify the maximum log file size (KB)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_0", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_1", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", - "displayName": "Locked-Down Trusted Sites", + "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_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", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_4", - "displayName": "High", + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid", - "displayName": "Allow software to run or install even if the signature is invalid", + "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_internetexplorer_allowsoftwarewhensignatureisinvalid_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", - "displayName": "Restricted Sites Zone Template", + "id": "device_vendor_msft_policy_config_experience_allowcortana", + "displayName": "Allow Cortana", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowcortana_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowcortana_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", - "displayName": "Restricted Sites", + "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery", + "displayName": "Allow Device Discovery", "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_experience_allowdevicediscovery_0", + "displayName": "Block", + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_4", - "displayName": "High", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery_1", + "displayName": "Allow", + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", - "displayName": "Turn on Suggested Sites", + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice", + "displayName": "Allow Find My Device", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", - "displayName": "Trusted Sites Zone Template", + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment", + "displayName": "Allow Manual MDM Unenrollment", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", - "displayName": "Trusted Sites", + "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles", + "displayName": "Allow Save As Of Office Files", "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_experience_allowsaveasofofficefiles_0", + "displayName": "Block", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_4", - "displayName": "High", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", - "displayName": "Check for server certificate revocation", + "id": "device_vendor_msft_policy_config_experience_allowscreencapture", + "displayName": "Allow Screen Capture", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowscreencapture_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowscreencapture_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", - "displayName": "Check for signatures on downloaded programs", + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim", + "displayName": "Allow SIM Error Dialog Prompt When No SIM", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel", - "displayName": "Configure which channel of Microsoft Edge to use for opening redirected sites", + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings", + "displayName": "Allow Sync My Settings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_0", + "displayName": "Block", + "description": "Sync settings are not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_1", + "displayName": "Allow", + "description": "Sync settings allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", - "displayName": "First choice (Device)", + "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures", + "displayName": "Allow Windows Consumer Features", "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_experience_allowwindowsconsumerfeatures_0", + "displayName": "Block", + "description": "Not allowed." }, { - "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_experience_allowwindowsconsumerfeatures_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", - "displayName": "Second choice (Device)", + "id": "device_vendor_msft_policy_config_experience_allowwindowstips", + "displayName": "Allow Windows Tips", "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_experience_allowwindowstips_0", + "displayName": "Block", + "description": "Disabled." }, { - "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_experience_allowwindowstips_1", + "displayName": "Allow", + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", - "displayName": "Third choice (Device)", + "id": "device_vendor_msft_policy_config_experience_configurechaticon", + "displayName": "Configure Chat Icon", "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_experience_configurechaticon_0", + "displayName": "Windows default", + "description": "Not configured" }, { - "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_experience_configurechaticon_1", + "displayName": "Show", + "description": "Show" }, { - "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_experience_configurechaticon_2", + "displayName": "Hide", + "description": "Hide" }, { - "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_experience_configurechaticon_3", + "displayName": "Disabled", + "description": "Disabled" } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent", + "displayName": "Disable Cloud Optimized Content", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_0", + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_0", "displayName": "Disabled", - "description": null + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_1", + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_1", "displayName": "Enabled", - "description": null + "description": "Enabled." } ] }, { - "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", + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent", + "displayName": "Disable Consumer Account State Content", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_0", + "displayName": "Disabled.", + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_1", + "displayName": "Enabled.", + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", - "displayName": "Prevent bypassing SmartScreen Filter warnings", + "id": "device_vendor_msft_policy_config_experience_disableshareapppromotions", + "displayName": "Disable Share App Promotions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_disableshareapppromotions_0", + "displayName": "Promotional Apps on ShareSheet are Enabled.", + "description": "Promotional Apps on ShareSheet are Enabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_disableshareapppromotions_1", + "displayName": "Promotional Apps on ShareSheet are Disabled.", + "description": "Promotional Apps on ShareSheet are Disabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles", - "displayName": "Prevent bypassing SmartScreen Filter warnings about files that are not commonly downloaded from the Internet", + "id": "device_vendor_msft_policy_config_experience_donotshowfeedbacknotifications", + "displayName": "Do Not Show Feedback Notifications", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_0", - "displayName": "Disabled", - "description": null + "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_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_1", - "displayName": "Enabled", - "description": null + "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_internetexplorer_disablecompatview", - "displayName": "Turn off Compatibility View", + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings", + "displayName": "Do Not Sync Browser Settings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_2", + "displayName": "Disable Syncing", + "description": "Disable Syncing" }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_0", + "displayName": "Allow syncing", + "description": "Allow syncing" } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", - "displayName": "Disable \"Configuring History\"", + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing", + "displayName": "Prevent Users From Turning On Browser Syncing", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_0", + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_0", "displayName": "Disabled", - "description": null + "description": "Allowed/turned on. Users can sync the browser settings." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_1", + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_1", "displayName": "Enabled", - "description": null + "description": "Prevented/turned off." } ] }, { - "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", + "id": "device_vendor_msft_policy_config_experience_showlockonusertile", + "displayName": "Show Lock On User Tile", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_0", + "id": "device_vendor_msft_policy_config_experience_showlockonusertile_0", "displayName": "Disabled", - "description": null + "description": "The lock option is not displayed in the User Tile menu." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_1", + "id": "device_vendor_msft_policy_config_experience_showlockonusertile_1", "displayName": "Enabled", - "description": null + "description": "The lock option is displayed in the User Tile menu." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation", - "displayName": "Prevent participation in the Customer Experience Improvement Program", + "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_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_0", - "displayName": "Disabled", - "description": null + "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_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_1", - "displayName": "Enabled", - "description": null + "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_internetexplorer_disabledeletinguservisitedwebsites", - "displayName": "Prevent deleting websites that the user has visited", + "id": "device_vendor_msft_policy_config_feeds_feedsenabled", + "displayName": "Enable News and interests", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_feeds_feedsenabled_0", + "displayName": "Not allowed.", + "description": "Not allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_feeds_feedsenabled_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading", - "displayName": "Prevent downloading of enclosures", + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", + "displayName": "Allow Option To Show Network", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", - "displayName": "Turn off encryption support", + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc", + "displayName": "Allow Option To Show This PC", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", - "displayName": "Secure Protocol combinations", + "id": "device_vendor_msft_policy_config_fileexplorer_disablegraphrecentitems", + "displayName": "Disable Graph Recent Items", "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_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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_640", - "displayName": "Use TLS 1.0 and TLS 1.1", - "description": null - }, + "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_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_fileexplorer_setallowedfolderlocations_0", + "displayName": "Access to all folder locations.", + "description": "Access to all folder locations." }, { - "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_fileexplorer_setallowedfolderlocations_13", + "displayName": "Documents, Pictures, Downloads", + "description": "Documents, Pictures, Downloads" }, { - "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_fileexplorer_setallowedfolderlocations_15", + "displayName": "Desktop, Documents, Pictures, Downloads", + "description": "Desktop, Documents, Pictures, Downloads" }, { - "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_fileexplorer_setallowedfolderlocations_31", + "displayName": "Desktop, Documents, Pictures, Downloads, Network", + "description": "Desktop, Documents, Pictures, Downloads, Network" }, { - "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_fileexplorer_setallowedfolderlocations_47", + "displayName": "This PC, Desktop, Documents, Pictures, Downloads", + "description": "This PC, Desktop, Documents, Pictures, Downloads" }, { - "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_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_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_fileexplorer_setallowedstoragelocations_0", + "displayName": "Access to all storage locations.", + "description": "Access to all storage locations." }, { - "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_fileexplorer_setallowedstoragelocations_1", + "displayName": "Removable Drives", + "description": "Removable Drives" }, { - "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_fileexplorer_setallowedstoragelocations_2", + "displayName": "Sync roots", + "description": "Sync roots" }, { - "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_fileexplorer_setallowedstoragelocations_3", + "displayName": "Removable Drives, Sync roots", + "description": "Removable Drives, Sync roots" }, { - "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_fileexplorer_setallowedstoragelocations_4", + "displayName": "Local Drives", + "description": "Local Drives" }, { - "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_fileexplorer_setallowedstoragelocations_5", + "displayName": "Removable Drives, Local Drives", + "description": "Removable Drives, Local Drives" }, { - "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_fileexplorer_setallowedstoragelocations_6", + "displayName": "Sync Roots, Local Drives", + "description": "Sync Roots, Local Drives" }, { - "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_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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2600", - "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.1, and TLS 1.2", + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer_0", + "displayName": "Disabled", "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", + "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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2696", - "displayName": "Use SSL 2.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffheapterminationoncorruption_0", + "displayName": "Disabled", "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", + "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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2728", - "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8192", - "displayName": "Only use TLS 1.3", + "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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10240", - "displayName": "Use TLS 1.2 and TLS 1.3", + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_0", + "displayName": "Disabled", "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", + "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_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10880", - "displayName": "Use TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_0", + "displayName": "False", "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", + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_1", + "displayName": "True", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync", - "displayName": "Turn off background synchronization for feeds and Web Slices", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions", + "displayName": "Clean-up Invalid Sessions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", - "displayName": "Prevent running First Run wizard", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin", + "displayName": "Roam Recycle Bin", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", - "displayName": "Select your choice", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk", + "displayName": "VHD Compact Disk", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_1", - "displayName": "Go directly to home page", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_2", - "displayName": "Go directly to \"Welcome To IE\" page", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature", - "displayName": "Turn off the flip ahead with page prediction feature", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory", + "displayName": "Cache Directory", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation", - "displayName": "Turn off browser geolocation", + "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_internetexplorer_disablegeolocation_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication", - "displayName": "Disable HTML Application", + "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_internetexplorer_disablehtmlapplication_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors", - "displayName": "Prevent ignoring certificate errors", + "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_internetexplorer_disableignoringcertificateerrors_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", - "displayName": "Turn off InPrivate Browsing", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface", + "displayName": "Driver Interface", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp", - "displayName": "[Deprecated] Disable Internet Explorer 11 as a standalone browser", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled", + "displayName": "Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2", - "displayName": "Disable Internet Explorer 11 as a standalone browser", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled_0", + "displayName": "Logging Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_1", - "displayName": "Enabled", + "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_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions", - "displayName": "Notify that Internet Explorer 11 browser is disabled (Device)", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility", + "displayName": "Font Visibility", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_2", - "displayName": "Once per user", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_1", + "displayName": "Enabled", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher", + "displayName": "FrxLauncher", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange", - "displayName": "Prevent changing proxy settings", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin", + "displayName": "IE plugin", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", - "displayName": "Prevent changing the default search provider", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor", + "displayName": "Java rule editor", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", - "displayName": "Disable changing secondary home page settings", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory", + "displayName": "Log Directory", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_secondaryhomepageslist", - "displayName": "Secondary home pages (Device)", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_logginglogdirectory", + "displayName": "Log Directory (Device)", "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck", - "displayName": "Turn off the Security Settings Check feature", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod", + "displayName": "Log Keeping Period", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck", - "displayName": "Disable Periodic Check for Internet Explorer software updates", + "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_internetexplorer_disableupdatecheck_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete", - "displayName": "Turn off the auto-complete feature for web addresses", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer", + "displayName": "ODFC Container", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility", + "displayName": "Printer Visibility", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites", - "displayName": "Security Zones: Do not allow users to add/delete sites", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart", + "displayName": "Process Start", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies", - "displayName": "Security Zones: Do not allow users to change policies", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool", + "displayName": "Profile Configuration Tool", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols", - "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer", + "displayName": "Profile Container", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation", + "displayName": "Rule Compilation", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor", + "displayName": "Rule Editor", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode", - "displayName": "Enable global window list in Internet Explorer mode", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin", + "displayName": "Search Plugin", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming", + "displayName": "Search Roaming", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", - "displayName": "Intranet Sites: Include all network paths (UNCs)", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices", + "displayName": "Services", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer", + "displayName": "Access Network as Computer Object", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl", + "displayName": "Attached VHD SDDL", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "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_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive", + "displayName": "Include OneDrive", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote", + "displayName": "Include OneNote", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp", + "displayName": "Include OneNote UWP", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript", - "displayName": "Allow cut, copy or paste operations from the clipboard via script", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook", + "displayName": "Include Outlook", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", - "displayName": "Allow paste operations via script", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization", + "displayName": "Include Outlook Personalization", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles", - "displayName": "Allow drag and drop or copy and paste files", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint", + "displayName": "Include Sharepoint", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype", + "displayName": "Include Skype", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams", + "displayName": "Include Teams", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd", + "displayName": "Is Dynamic (VHD)", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount", + "displayName": "Locked Retry Count", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_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", + "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_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles", - "displayName": "Allow loading of XAML files", + "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_internetexplorer_internetzoneallowloadingofxamlfiles_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", - "displayName": "XAML Files", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", - "displayName": "Enable", + "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_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_3", - "displayName": "Disable", + "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_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_1", - "displayName": "Prompt", + "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_internetexplorer_internetzoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "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_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_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", + "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_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols", - "displayName": "Allow only approved domains to use ActiveX controls without prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode", + "displayName": "Outlook Cached Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath", + "displayName": "Outlook Folder Path", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol", - "displayName": "Allow only approved domains to use the TDC ActiveX control", + "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_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile", + "displayName": "Prevent Login With Temp Profile", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", - "displayName": "Allow scripting of Internet Explorer WebBrowser controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount", + "displayName": "Reattach Count", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", - "displayName": "Internet Explorer web browser control", + "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_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows", - "displayName": "Allow script-initiated windows without size or position constraints", + "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_internetexplorer_internetzoneallowscriptinitiatedwindows_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype_1", + "displayName": "Legacy Redirection", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype_2", + "displayName": "FSLogix Redirection", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets", - "displayName": "Allow scriptlets", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy", + "displayName": "Refresh User Policy", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "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_internetexplorer_internetzoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch", + "displayName": "Roam Search", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "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_internetexplorer_internetzoneallowupdatestostatusbarviascript", - "displayName": "Allow updates to status bar via script", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs", + "displayName": "Size In MBs", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_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_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_odfcsizeinmbs", + "displayName": "Size In MBs (Device)", + "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode", + "displayName": "VHD Access Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_0", + "displayName": "Direct Access", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "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_internetexplorer_internetzoneallowvbscripttorunininternetexplorer", - "displayName": "Allow VBScript to run in Internet Explorer", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations", + "displayName": "VHD Locations", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c", - "displayName": "Allow VBScript to run in Internet Explorer", + "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_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_3", - "displayName": "Disable", + "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_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_odfcvhdxsectorsize_4096", + "displayName": "4 KB", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx", + "displayName": "Volume Type (VHD or VHDX)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx_vhd", + "displayName": "VHD", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx_vhdx", + "displayName": "VHDX", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols", - "displayName": "Download signed ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", - "displayName": "Download signed ActiveX controls", + "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_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols", - "displayName": "Download unsigned ActiveX controls", + "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_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", - "displayName": "Download unsigned ActiveX controls", + "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_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter", - "displayName": "Turn on Cross-Site Scripting Filter", + "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_internetexplorer_internetzoneenablecrosssitescriptingfilter_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409", - "displayName": "Turn on Cross-Site Scripting (XSS) Filter", + "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_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonlogoff_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonlogoff_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows", - "displayName": "Enable dragging of content from different domains across windows", + "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_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_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", + "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_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows", - "displayName": "Enable dragging of content from different domains within a window", + "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_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_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", + "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_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing", - "displayName": "Enable MIME Sniffing", + "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_internetexplorer_internetzoneenablemimesniffing_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", - "displayName": "Enable MIME Sniffing", + "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_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode", - "displayName": "Turn on Protected Mode", + "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_internetexplorer_internetzoneenableprotectedmode_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500", - "displayName": "Protected Mode", + "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_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver", - "displayName": "Include local path when user is uploading files to a server", + "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_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_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", + "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_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl", + "displayName": "Attached VHD SDDL", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_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", + "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_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilescleanoutnotifications_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilescleanoutnotifications_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", - "displayName": "Java permissions", + "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_internetexplorer_internetzonejavapermissions_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled", + "displayName": "Enabled", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe", - "displayName": "Launching applications and files in an IFRAME", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages", + "displayName": "Install Appx Packages", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804", - "displayName": "Launching applications and files in an IFRAME", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd", + "displayName": "Is Dynamic (VHD)", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", - "displayName": "Logon options", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff", + "displayName": "Keep Local Directory (after logoff)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", - "displayName": "Logon options", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount", + "displayName": "Locked Retry Count", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", - "displayName": "Anonymous logon", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_131072", - "displayName": "Automatic logon only in Intranet zone", + "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_internetexplorer_internetzonelogonoptions_iz_partname1a00_0", - "displayName": "Automatic logon with current username and password", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_65536", - "displayName": "Prompt for user name and password", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_internetexplorer_internetzonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure", + "displayName": "Prevent Login With Failure", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode", - "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile", + "displayName": "Prevent Login With Temp Profile", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", - "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl", + "displayName": "Profile Directory SDDL", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles", - "displayName": "Show security warning for potentially unsafe files", + "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_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", - "displayName": "Launching programs and unsafe files", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_0", + "displayName": "Normal Profile", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", - "displayName": "Disable", + "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_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", - "displayName": "Prompt", + "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_internetexplorer_internetzoneusepopupblocker", - "displayName": "Use Pop-up Blocker", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount", + "displayName": "Reattach Count", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", - "displayName": "Use Pop-up Blocker", + "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_internetexplorer_internetzoneusepopupblocker_iz_partname1809_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "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_internetexplorer_intranetzoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "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_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "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_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder", + "displayName": "Redirection XML Source Folder", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_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_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_profilesredirectionxmlsourcefolder", + "displayName": "Redirection XML Source Folder (Device)", + "options": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype", + "displayName": "Redirect Type", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_1", + "displayName": "Legacy Redirection", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_2", + "displayName": "FSLogix Redirection", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads", - "displayName": "Allow font downloads", + "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_internetexplorer_intranetzoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity", + "displayName": "Roam Identity", "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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch", + "displayName": "Roam Search", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", + "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_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "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_internetexplorer_intranetzoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "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_internetexplorer_intranetzoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", + "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_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "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_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "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_internetexplorer_intranetzoneallowscriptlets", - "displayName": "Allow scriptlets", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff", + "displayName": "Shutdown On User Logoff", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "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_internetexplorer_intranetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl", + "displayName": "SID Directory SDDL", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "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_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "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_internetexplorer_intranetzoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "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_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_512", + "displayName": "512 bytes", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_4096", + "displayName": "4 KB", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "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_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_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", + "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_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions", - "displayName": "Java permissions", + "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_internetexplorer_intranetzonejavapermissions_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "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_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", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_internetexplorer_intranetzonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "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_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement", - "displayName": "Replace JScript by loading JScript9Legacy in place of JScript via MSHTML/WebOC.", + "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_internetexplorer_jscriptreplacement_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer", - "displayName": "Keep all intranet sites in Internet Explorer", + "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_internetexplorer_keepintranetsitesininternetexplorer_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "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_internetexplorer_localmachinezoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "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_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "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_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "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_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "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_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "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_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads", - "displayName": "Allow font downloads", + "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_internetexplorer_localmachinezoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx", + "displayName": "", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", + "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_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "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_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", - "description": null + "id": "device_vendor_msft_policy_config_games_allowadvancedgamingservices_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked", + "displayName": "Panel Default Mode Docked", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked_0", "displayName": "Disabled", - "description": null + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked_1", "displayName": "Enabled", - "description": null + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock", + "displayName": "Force Instant Lock", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_2", + "displayName": "Forced Off.", + "description": "ForcedOff." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_1", + "displayName": "Forced On.", + "description": "ForcedOn." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake", + "displayName": "Force Instant Wake", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_2", + "displayName": "Forced Off.", + "description": "ForcedOff." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", - "displayName": "Enabled", - "description": null + "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_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout", + "displayName": "Force Lock Timeout", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_120", + "displayName": "Two Minutes", + "description": "TwoMinutes" }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_30", + "displayName": "Thirty Seconds.", + "description": "ThirtySeconds." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", - "description": null + "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_localmachinezoneallowscriptlets", - "displayName": "Allow scriptlets", + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetection", + "displayName": "Force Onlooker Detection", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetection_2", + "displayName": "Forced Off.", + "description": "ForcedOff." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetection_1", + "displayName": "Forced On.", + "description": "ForcedOn." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetection_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetectionaction", + "displayName": "Force Onlooker Detection Action", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetectionaction_3", + "displayName": "Forced Dim And Notify.", + "description": "ForcedDimAndNotify." }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", - "description": null + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetectionaction_2", + "displayName": "Forced Notify.", + "description": "ForcedNotify." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceonlookerdetectionaction_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "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_localmachinezoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering", + "displayName": "Turn on ActiveX Filtering", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist", + "displayName": "Add-on List", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "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_localmachinezoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", + "displayName": "Allow deleting browsing history on exit", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", + "displayName": "Turn on Enhanced Protected Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "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_localmachinezoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_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", + "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_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", - "displayName": "Java permissions", + "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_localmachinezonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "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_localmachinezonejavapermissions_iz_partname1c00_65536", - "displayName": "High safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_131072", - "displayName": "Medium safety", + "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_localmachinezonejavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_0", + "displayName": "No Sites", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "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_localmachinezonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_3", + "displayName": "All Sites", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_localmachinezonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "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_localmachinezonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate", + "displayName": "Internet Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", + "displayName": "Internet", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_3", + "displayName": "Medium", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_5", + "displayName": "Medium High", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_4", + "displayName": "High", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate", + "displayName": "Intranet Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", + "displayName": "Intranet", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", + "displayName": "Medium Low", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", + "displayName": "Medium", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "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_lockeddowninternetzoneallowfontdownloads", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", + "displayName": "Local Machine Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", + "displayName": "Local Machine Zone", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "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_lockeddowninternetzoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", + "displayName": "Locked-Down Internet Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", + "displayName": "Locked-Down Internet", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "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_lockeddowninternetzoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate", + "displayName": "Locked-Down Intranet Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", + "displayName": "Locked-Down Intranet", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "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_lockeddowninternetzoneallowscriptlets", - "displayName": "Allow scriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", + "displayName": "Locked-Down Local Machine Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", + "displayName": "Locked-Down Local Machine Zone", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "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_lockeddowninternetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", + "displayName": "Locked-Down Restricted Sites Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", + "displayName": "Locked-Down Restricted Sites", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_3", + "displayName": "Medium", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_1", - "displayName": "Enabled", + "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_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "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_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "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_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist", + "displayName": "Site to Zone Assignment List", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions", - "displayName": "Java permissions", + "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_lockeddowninternetzonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", + "displayName": "Locked-Down Trusted Sites", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_65536", - "displayName": "High safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_131072", - "displayName": "Medium safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_3", + "displayName": "Medium", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_5", + "displayName": "Medium High", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_4", + "displayName": "High", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_lockeddowninternetzonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", + "displayName": "Restricted Sites Zone Template", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", + "displayName": "Restricted Sites", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_65536", - "displayName": "High safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_131072", - "displayName": "Medium safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_2", + "displayName": "Medium Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_3", + "displayName": "Medium", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_5", + "displayName": "Medium High", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_4", + "displayName": "High", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", + "displayName": "Turn on Suggested Sites", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", + "displayName": "Trusted Sites Zone Template", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", + "displayName": "Trusted Sites", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_1", + "displayName": "Low", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", - "displayName": "Enabled", + "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_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_autodetectintranet", + "displayName": "Turn on automatic detection of intranet", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_autodetectintranet_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_autodetectintranet_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", + "displayName": "Check for server certificate revocation", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", + "displayName": "Check for signatures on downloaded programs", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads", - "displayName": "Allow font downloads", + "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_lockeddownintranetzoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", + "displayName": "First choice (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_", + "displayName": "", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_1", + "displayName": "Microsoft Edge Stable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "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_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", + "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_lockeddownintranetzoneallowlessprivilegedsites_1", - "displayName": "Enabled", + "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_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", + "displayName": "Second choice (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_", + "displayName": "", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_1", + "displayName": "Microsoft Edge Stable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "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_lockeddownintranetzoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", - "options": [ + }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_0", - "displayName": "Disabled", + "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_lockeddownintranetzoneallownetframeworkreliantcomponents_1", - "displayName": "Enabled", + "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_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", + "displayName": "Third choice (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_", + "displayName": "", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_1", + "displayName": "Microsoft Edge Stable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "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_lockeddownintranetzoneallowscriptlets", - "displayName": "Allow scriptlets", - "options": [ + }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_0", - "displayName": "Disabled", + "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_lockeddownintranetzoneallowscriptlets_1", - "displayName": "Enabled", + "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_lockeddownintranetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "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_lockeddownintranetzoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", + "displayName": "Prevent bypassing SmartScreen Filter warnings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "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_lockeddownintranetzoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview", + "displayName": "Turn off Compatibility View", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", + "displayName": "Disable \"Configuring History\"", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_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_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_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_lockeddownintranetzonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "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_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "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_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", + "displayName": "Turn off encryption support", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", + "displayName": "Secure Protocol combinations", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", + "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_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "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_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", - "options": [ + }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", - "displayName": "Disabled", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", - "displayName": "Enabled", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", + "displayName": "Prevent running First Run wizard", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", + "displayName": "Select your choice", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "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_lockeddownlocalmachinezoneallowfontdownloads", - "displayName": "Allow font downloads", + "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_lockeddownlocalmachinezoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation", + "displayName": "Turn off browser geolocation", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication", + "displayName": "Disable HTML Application", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_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", + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors", + "displayName": "Prevent ignoring certificate errors", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", + "displayName": "Turn off InPrivate Browsing", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_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", + "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_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets", - "displayName": "Allow scriptlets", + "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_lockeddownlocalmachinezoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "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_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_0", + "displayName": "Never", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "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_lockeddownlocalmachinezoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom", + "displayName": "Disable Internet Explorer 11 Launch Via COM Automation", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "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_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange", + "displayName": "Prevent changing proxy settings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", + "displayName": "Prevent changing the default search provider", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", + "displayName": "Disable changing secondary home page settings", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_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", + "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_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", - "displayName": "Java permissions", + "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_lockeddownlocalmachinezonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "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_lockeddownlocalmachinezonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "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_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "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_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "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_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", + "displayName": "Intranet Sites: Include all network paths (UNCs)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites", + "displayName": "Intranet Sites: Include all sites that bypass the proxy server", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "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_lockeddownrestrictedsiteszoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "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_lockeddownrestrictedsiteszoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "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_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "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_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "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_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions", - "displayName": "Java permissions", + "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_lockeddownrestrictedsiteszonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "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_lockeddowntrustedsiteszoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "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_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_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", + "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_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_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", + "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_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_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", + "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_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions", - "displayName": "Java permissions", + "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_lockeddowntrustedsiteszonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_1", - "displayName": "Enabled", + "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_newtabdefaultpage", - "displayName": "Specify default behavior for a new tab", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", - "displayName": "New tab behavior", + "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_newtabdefaultpage_newtabactionoptions_3", - "displayName": "New tab page with my news feed", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_0", - "displayName": "about:blank", + "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_newtabdefaultpage_newtabactionoptions_2", - "displayName": "New tab page", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_1", - "displayName": "Home page", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "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_notificationbarinternetexplorerprocesses_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", - "displayName": "Prevent managing SmartScreen Filter", + "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_preventmanagingsmartscreenfilter_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", - "displayName": "Select SmartScreen Filter mode", + "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_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_0", - "displayName": "Off", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_1", - "displayName": "On", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols", - "displayName": "Prevent per-user installation of ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing", + "displayName": "Enable MIME Sniffing", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols", - "displayName": "Remove \"Run this time\" button for outdated ActiveX controls in Internet Explorer", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode", + "displayName": "Turn on Protected Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500", + "displayName": "Protected Mode", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "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_restrictactivexinstallinternetexplorerprocesses_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains", + "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_restrictedsiteszoneallowaccesstodatasources_0", + "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_restrictedsiteszoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains", + "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_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", - "displayName": "Allow active scripting", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400", - "displayName": "Allow active scripting", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_1", - "displayName": "Prompt", + "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_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls", + "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_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "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_restrictedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "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_restrictedsiteszoneallowbinaryandscriptbehaviors", - "displayName": "Allow binary and script behaviors", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000", - "displayName": "Allow Binary and Script Behaviors", + "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_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_65536", - "displayName": "Administrator approved", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript", - "displayName": "Allow cut, copy or paste operations from the clipboard via script", + "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_restrictedsiteszoneallowcopypasteviascript_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407", - "displayName": "Allow paste operations via script", + "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_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles", - "displayName": "Allow drag and drop or copy and paste files", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_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", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", + "displayName": "Launching programs and unsafe files", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads", - "displayName": "Allow file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker", + "displayName": "Use Pop-up Blocker", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803", - "displayName": "Allow file downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_0", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_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", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_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", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "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_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", - "displayName": "Allow loading of XAML files", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", + "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_restrictedsiteszoneallowloadingofxamlfiles_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402", - "displayName": "XAML Files", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh", - "displayName": "Allow META REFRESH", + "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_restrictedsiteszoneallowmetarefresh_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608", - "displayName": "Allow META REFRESH", + "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_restrictedsiteszoneallowmetarefresh_iz_partname1608_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_3", + "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_restrictedsiteszoneallownetframeworkreliantcomponents", + "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_restrictedsiteszoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "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_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_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", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_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", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol", - "displayName": "Allow only approved domains to use the TDC ActiveX control", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_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", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols", - "displayName": "Allow scripting of Internet Explorer WebBrowser controls", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", - "displayName": "Internet Explorer web browser control", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows", - "displayName": "Allow script-initiated windows without size or position constraints", + "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_restrictedsiteszoneallowscriptinitiatedwindows_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_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", + "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_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", - "displayName": "Allow scriptlets", + "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_restrictedsiteszoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets", + "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_restrictedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", + "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_restrictedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "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_restrictedsiteszoneallowupdatestostatusbarviascript", - "displayName": "Allow updates to status bar via script", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103", - "displayName": "Status bar updates via script", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", - "displayName": "Userdata persistence", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence", + "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_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "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_restrictedsiteszoneallowvbscripttorunininternetexplorer", - "displayName": "Allow VBScript to run in Internet Explorer", + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement", + "displayName": "Replace JScript by loading JScript9Legacy in place of JScript.", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c", - "displayName": "Allow VBScript to run in Internet Explorer", + "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer", + "displayName": "Keep all intranet sites in Internet Explorer", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "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_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", - "displayName": "Download signed ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", - "displayName": "Download signed ActiveX controls", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_3", + "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_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", - "displayName": "Download unsigned ActiveX controls", + "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_restrictedsiteszonedownloadunsignedactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", - "displayName": "Download unsigned ActiveX controls", + "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_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", - "displayName": "Turn on Cross-Site Scripting Filter", + "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_restrictedsiteszoneenablecrosssitescriptingfilter_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409", - "displayName": "Turn on Cross-Site Scripting (XSS) Filter", + "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_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_3", + "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_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows", - "displayName": "Enable dragging of content from different domains across windows", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_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", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows", - "displayName": "Enable dragging of content from different domains within a window", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_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", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", - "displayName": "Enable MIME Sniffing", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", - "displayName": "Enable MIME Sniffing", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_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", + "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_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_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", + "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_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols", + "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_restrictedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "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_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_65536", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_65536", "displayName": "High safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_131072", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_131072", "displayName": "Medium safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_196608", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_196608", "displayName": "Low safety", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_8388608", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_8388608", "displayName": "Custom", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_0", "displayName": "Disable Java", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe", - "displayName": "Launching applications and files in an IFRAME", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804", - "displayName": "Launching applications and files in an IFRAME", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00", + "displayName": "Logon options (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", - "displayName": "Enable", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", - "displayName": "Disable", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", - "displayName": "Prompt", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", - "displayName": "Logon options", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", - "displayName": "Logon options", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_0", - "displayName": "Automatic logon with current username and password", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_65536", - "displayName": "Prompt for user name and password", + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", - "displayName": "Run ActiveX controls and plugins", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200", - "displayName": "Run ActiveX controls and plugins", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", - "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405", - "displayName": "Script ActiveX controls marked safe for scripting", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", - "displayName": "Scripting of Java applets", + "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_restrictedsiteszonescriptingofjavaapplets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", - "displayName": "Scripting of Java applets", + "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_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles", - "displayName": "Show security warning for potentially unsafe files", + "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_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", - "displayName": "Launching programs and unsafe files", + "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_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", - "displayName": "Turn on Protected Mode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", - "displayName": "Protected Mode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", - "displayName": "Use Pop-up Blocker", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", - "displayName": "Use Pop-up Blocker", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", - "displayName": "Internet Explorer Processes", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist", - "displayName": "Restrict search providers to a specific list", + "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_searchproviderlist_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings", - "displayName": "Security Zones: Use only machine settings", + "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_securityzonesuseonlymachinesettings_0", + "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_securityzonesuseonlymachinesettings_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_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.", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", + "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_sendsitesnotinenterprisesitelisttoedge_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_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", + "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_specifyuseofactivexinstallerservice_0", + "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_specifyuseofactivexinstallerservice_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources", + "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_trustedsiteszoneallowaccesstodatasources_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406", "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads", "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites", + "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_trustedsiteszoneallowlessprivilegedsites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "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_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents", + "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_trustedsiteszoneallownetframeworkreliantcomponents_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "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_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets", "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209", "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls", + "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_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls", + "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_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "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_trustedsiteszoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_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", + "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_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_3", "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_1", "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions", - "displayName": "Java permissions", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring", - "displayName": "Fail authentication requests when Kerberos armoring is not available", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation", - "displayName": "Require strict KDC validation", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_1", - "displayName": "Enabled", + "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_kerberos_setmaximumcontexttokensize", - "displayName": "Set maximum Kerberos SSPI context token buffer size", + "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_kerberos_setmaximumcontexttokensize_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_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", + "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_kioskbrowser_enableendsessionbutton_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", - "description": "Disable" + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton", - "displayName": "Enable Home Button", + "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_kioskbrowser_enablehomebutton_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons", - "displayName": "Enable Navigation Buttons", + "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_kioskbrowser_enablenavigationbuttons_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", - "description": "Disable" + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null } ] }, { - "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", "displayName": "Enabled", - "description": "Enabled" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_licensing_allowwindowsentitlementreactivation", - "displayName": "Allow Windows Entitlement Reactivation", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "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_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation", - "displayName": "Disallow KMS Client Online AVS Validation", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation_0", - "displayName": "Block", - "description": "Disabled." + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation_1", - "displayName": "Allow", - "description": "Enabled." + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts", - "displayName": "Accounts Block Microsoft Accounts", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "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_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus", - "displayName": "Accounts Enable Administrator Account Status", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus", - "displayName": "Accounts Enable Guest Account Status", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", - "description": "Disable" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly", - "displayName": "Accounts Limit Local Account Use Of Blank Passwords To Console Logon Only", + "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_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", - "description": "Enabled" + "description": null } ] }, { - "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", + "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_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_1", - "displayName": "Allow", - "description": "Allow" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_0", - "displayName": "Block", - "description": "Block" + "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_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters", - "displayName": "Devices Prevent Users From Installing Printer Drivers When Connecting To Shared Printers", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", + "displayName": "Enabled", + "description": null } ] }, { - "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "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_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null }, { - "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_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null }, { - "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_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null }, { - "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_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_localpoliciessecurityoptions_interactivelogon_donotdisplaylastsignedin", - "displayName": "Interactive Logon Do Not Display Last Signed In", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "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_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin", - "displayName": "Interactive Logon Do Not Display Username At Sign In", + "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_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin_0", - "displayName": "Disabled (username will be shown)", - "description": "Disabled (username will be shown)" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null }, { - "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_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_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel", - "displayName": "Interactive Logon Do Not Require CTRLALTDEL", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit", - "displayName": "[Deprecated] Interactive Logon Machine Inactivity Limit (Deprecated)", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit_0", - "displayName": "Disabled", - "description": "Disabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null }, { - "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_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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "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_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways", - "displayName": "Microsoft Network Client Digitally Sign Communications Always", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", - "description": "Disable" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees", - "displayName": "Microsoft Network Client Digitally Sign Communications If Server Agrees", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers", - "displayName": "Microsoft Network Client Send Unencrypted Password To Third Party SMB Servers", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", - "description": "Disable" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways", - "displayName": "Microsoft Network Server Digitally Sign Communications Always", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees", - "displayName": "Microsoft Network Server Digitally Sign Communications If Client Agrees", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", - "description": "Disable" + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts", - "displayName": "Network Access Do Not Allow Anonymous Enumeration Of SAM Accounts", + "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_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_1", - "displayName": "Enabled", - "description": "Enabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_0", - "displayName": "Disabled", - "description": "Disabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares", - "displayName": "Network Access Do Not Allow Anonymous Enumeration Of Sam Accounts And Shares", + "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_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_1", - "displayName": "Enabled", - "description": "Enabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_0", - "displayName": "Disabled", - "description": "Disabled" + "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_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares", - "displayName": "Network Access Restrict Anonymous Access To Named Pipes And Shares", + "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_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_0", - "displayName": "Disable", - "description": "Disable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null } ] }, { - "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", + "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_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_1", - "displayName": "Allow", - "description": "Allow" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_0", - "displayName": "Block", - "description": "Block" + "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_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests", - "displayName": "Network Security Allow PKU2U Authentication Requests", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_0", - "displayName": "Block", - "description": "Block" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_1", - "displayName": "Allow", - "description": "Allow" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange", - "displayName": "Network Security Do Not Store LAN Manager Hash Value On Next Password Change", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", - "description": "Disable" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel", - "displayName": "Network Security LAN Manager Authentication Level", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "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_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients", - "displayName": "Network Security Minimum Session Security For NTLMSSP Based Clients", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "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_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers", - "displayName": "Network Security Minimum Session Security For NTLMSSP Based Servers", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", "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_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null } ] }, { - "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "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_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_incomingntlmtraffic", - "displayName": "Network Security Restrict NTLM Incoming NTLM Traffic", + "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_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_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers", - "displayName": "Network Security Restrict NTLM Outgoing NTLM Traffic To Remote Servers", + "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_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers_0", - "displayName": "Allow all", - "description": "Allow all" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon", - "displayName": "Shutdown Allow System To Be Shut Down Without Having To Log On", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile", - "displayName": "Shutdown Clear Virtual Memory Page File", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile_1", - "displayName": "Enable", - "description": "Enable" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_allowuiaccessapplicationstopromptforelevation_0", - "displayName": "disabled", - "description": "disabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null }, { - "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_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_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministratorprotection", - "displayName": "User Account Control Behavior Of The Elevation Prompt For Administrator Protection (Windows Insiders only)", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "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_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators", - "displayName": "User Account Control Behavior Of The Elevation Prompt For Administrators", + "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_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_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_4", - "displayName": "Prompt for consent", - "description": "Prompt for consent" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null }, { - "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_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers", - "displayName": "User Account Control Behavior Of The Elevation Prompt For Standard Users", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "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_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers_3", - "displayName": "Prompt for credentials", - "description": "Prompt for credentials" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation", - "displayName": "User Account Control Detect Application Installations And Prompt For Elevation", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", - "description": "Disable" + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated", - "displayName": "User Account Control Only Elevate Executable Files That Are Signed And Validated", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "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_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated_1", - "displayName": "Enabled: Enforces validation.", - "description": "Enabled: Enforces validation." + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations", - "displayName": "User Account Control Only Elevate UI Access Applications That Are Installed In Secure Locations", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "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_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode", - "displayName": "User Account Control Run All Administrators In Admin Approval Mode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", - "description": "Enabled" + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation", - "displayName": "User Account Control Switch To The Secure Desktop When Prompting For Elevation", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_0", - "displayName": "Disabled", - "description": "Disabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_1", - "displayName": "Enabled", - "description": "Enabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_typeofadminapprovalmode", - "displayName": "User Account Control Type Of Admin Approval Mode (Windows Insiders only)", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", "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_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode", - "displayName": "User Account Control Use Admin Approval Mode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", - "description": "Enable" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", "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" + "description": null }, { - "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_1", - "displayName": "Enabled", - "description": "Enabled" + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps", - "displayName": "Allow Custom SSPs and APs to be loaded into LSASS", + "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_localsecurityauthority_allowcustomsspsaps_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess", - "displayName": "Configure Lsa Protected Process", + "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_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_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null }, { - "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_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null } ] }, { - "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", + "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_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action_add_restrict", - "displayName": "Add (Replace)", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc", - "displayName": "Local group", + "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_localusersandgroups_configure_groupconfiguration_accessgroup_desc_administrators", - "displayName": "Administrators", - "description": null - }, - { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_users", - "displayName": "Users", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_guests", - "displayName": "Guests", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_powerusers", - "displayName": "Power Users", + "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_localusersandgroups_configure_groupconfiguration_accessgroup_desc_remotedesktopusers", - "displayName": "Remote Desktop Users", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_remotemanagementusers", - "displayName": "Remote Management Users", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", + "displayName": "Enabled", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_users", - "displayName": "Users/Groups", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_manual", - "displayName": "Manual", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe", - "displayName": "Allow Edge Swipe", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe_0", - "displayName": "Block", - "description": "Disallow edge swipe." + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe_1", - "displayName": "Allow", - "description": "Allow edge swipe." + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode", - "displayName": "Specify server", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect", - "displayName": "Disable HTTP fallback for SIP connection", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials", - "displayName": "Require logon credentials", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1", - "displayName": "Enabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck", - "displayName": "Disable server version check", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_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", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1", - "displayName": "Enabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode", - "displayName": "Configure SIP security mode", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_0", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_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", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_0", + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1", + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_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", + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_0", + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1", + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression", - "displayName": "Configure SIP compression mode", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage", + "displayName": "Specify default behavior for a new tab", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_0", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", + "displayName": "New tab behavior", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_0", - "displayName": "Always disabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_1", - "displayName": "Always enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_0", + "displayName": "about:blank", "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)", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_2", + "displayName": "New tab page", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_1", + "displayName": "Home page", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata", - "displayName": "Trusted Domain List", + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_0", + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1", + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_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", + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", + "displayName": "Prevent managing SmartScreen Filter", "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_internetexplorer_preventmanagingsmartscreenfilter_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_preventmanagingsmartscreenfilter_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate", - "displayName": "Enable Offline Maps Auto Update", + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", + "displayName": "Select SmartScreen Filter mode", "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_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_0", + "displayName": "Off", + "description": null }, { - "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_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_1", + "displayName": "On", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump", - "displayName": "Allow Crash Dump", + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols", + "displayName": "Prevent per-user installation of ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", - "displayName": "Block", - "description": "Disable crash dump collection." + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump_1", - "displayName": "Allow", - "description": "Allow crash dump collection." + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_memorydump_allowlivedump", - "displayName": "Allow Live Dump", + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", - "displayName": "Block", - "description": "Disable live dump collection." + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null }, { - "id": "device_vendor_msft_policy_config_memorydump_allowlivedump_1", - "displayName": "Allow", - "description": "Allow live dump collection." + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_messaging_allowmessagesync", - "displayName": "Allow Message Sync", + "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_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_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_0", + "displayName": "Disabled", + "description": null }, { - "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_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder", - "displayName": "Configure the location of the browser executable folder", + "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_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_0", + "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_1", + "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", - "displayName": "Retrieve configurations and experiments", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", - "displayName": "Retrieve configurations only", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", "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.", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", + "displayName": "Allow active scripting", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist", - "displayName": "HTTP Allowlist", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400", + "displayName": "Allow active scripting", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory", - "displayName": "Enable deleting browser and download history", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs", - "displayName": "Allow file selection dialogs", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors", + "displayName": "Allow binary and script behaviors", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally", - "displayName": "Always open PDF files externally", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000", + "displayName": "Allow Binary and Script Behaviors", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_applicationlocalevalue", - "displayName": "Set application locale", + "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_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls", - "displayName": "Sites that can access audio capture devices without requesting permission", + "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_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_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_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_microsoft_edge~policy~microsoft_edge_autofilladdressenabled", - "displayName": "Enable AutoFill for addresses", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads", + "displayName": "Allow file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled", - "displayName": "Enable AutoFill for payment instruments", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803", + "displayName": "Allow file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", "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", + "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_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_3", - "displayName": "Automatically imports all supported datatypes and settings from Safari", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled", - "displayName": "Continue running background apps after Microsoft Edge closes", + "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_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies", - "displayName": "Block third party cookies", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled", - "displayName": "Enable guest mode", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh", + "displayName": "Allow META REFRESH", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608", + "displayName": "Allow META REFRESH", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin", - "displayName": "Browser sign-in settings", + "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_microsoft_edge~policy~microsoft_edge_browsersignin_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin", - "displayName": "Browser sign-in settings (Device)", + "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_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_0", - "displayName": "Disable browser sign-in", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_1", - "displayName": "Enable browser sign-in", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled", - "displayName": "Use built-in DNS client", + "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_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_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", + "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_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", "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", + "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_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_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_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_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls", - "displayName": "Disable Certificate Transparency enforcement for specific URLs", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack", - "displayName": "Configure Do Not Track", + "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_microsoft_edge~policy~microsoft_edge_configuredonottrack_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech", - "displayName": "Configure Online Text To Speech", + "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_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability", - "displayName": "Control where developer tools can be used", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_2", - "displayName": "Don't allow using the developer tools", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis", - "displayName": "Disable support for 3D graphics APIs", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots", - "displayName": "Disable taking screenshots", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir", - "displayName": "Set disk cache directory", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_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_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_microsoft_edge~policy~microsoft_edge_downloadrestrictions", - "displayName": "Allow download restrictions", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", - "displayName": "Download restrictions (Device)", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", - "displayName": "Block potentially dangerous downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", - "displayName": "Block all downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled", - "displayName": "Allows users to edit favorites", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_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", + "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_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", "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)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks", - "displayName": "Enable online OCSP/CRL checks", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol", - "displayName": "Control communication with the Experimentation and Configuration Service", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", - "displayName": "Retrieve configurations and experiments", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", - "displayName": "Retrieve configurations only", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled", - "displayName": "Enable favorites bar", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch", - "displayName": "Enforce Bing SafeSearch", + "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_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch", - "displayName": "Enforce Bing SafeSearch (Device)", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_2", - "displayName": "Configure strict search restrictions in Bing", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles", - "displayName": "Enable use of ephemeral profiles", + "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_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch", - "displayName": "Enforce Google SafeSearch", + "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_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict", - "displayName": "Force minimum YouTube Restricted Mode", + "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_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict", - "displayName": "Force minimum YouTube Restricted Mode (Device)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", + "displayName": "Enable MIME Sniffing", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_2", - "displayName": "Enforce Strict Restricted Mode for YouTube", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed", - "displayName": "Allow full screen mode", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled", - "displayName": "Use hardware acceleration when available", + "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_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata", - "displayName": "Allow importing of autofill form data", + "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_microsoft_edge~policy~microsoft_edge_importautofillformdata_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites", - "displayName": "Allow importing of favorites", + "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_microsoft_edge~policy~microsoft_edge_importfavorites_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory", - "displayName": "Allow importing of browsing history", + "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_microsoft_edge~policy~microsoft_edge_importhistory_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_importhomepage", - "displayName": "Allow importing of home page settings", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo", - "displayName": "Allow importing of payment info", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_importsavedpasswords", - "displayName": "Allow importing of saved passwords", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine", - "displayName": "Allow importing of search engine settings", + "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_microsoft_edge~policy~microsoft_edge_importsearchengine_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability", - "displayName": "Configure InPrivate mode availability", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability", - "displayName": "Configure InPrivate mode availability (Device)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_0", - "displayName": "InPrivate mode available", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_1", - "displayName": "InPrivate mode disabled", + "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_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_2", - "displayName": "InPrivate mode forced", + "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_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel", - "displayName": "Configure Internet Explorer integration", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel", - "displayName": "Configure Internet Explorer integration (Device)", + "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_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_1", - "displayName": "Internet Explorer mode", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_2", - "displayName": "Internet Explorer 11", + "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_microsoft_edge~policy~microsoft_edge_isolateorigins", - "displayName": "Enable site isolation for specific origins", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", + "displayName": "Run ActiveX controls and plugins", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200", + "displayName": "Run ActiveX controls and plugins", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_65536", + "displayName": "Administrator approved", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode", + "displayName": "Run .NET Framework-reliant components signed with Authenticode", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_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", + "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_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting", + "displayName": "Script ActiveX controls marked safe for scripting", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_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", + "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_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_networkpredictionoptions", - "displayName": "Enable network prediction", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", + "displayName": "Scripting of Java applets", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions", - "displayName": "Enable network prediction (Device)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", + "displayName": "Scripting of Java applets", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_0", - "displayName": "Predict network actions on any network connection", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", + "displayName": "Enable", "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.)", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin", - "displayName": "Control where security restrictions on insecure origins apply", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_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_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_microsoft_edge~policy~microsoft_edge_proactiveauthenabled", - "displayName": "Enable Proactive Authentication", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", + "displayName": "Turn on Protected Mode", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled", - "displayName": "Enable full-tab promotional content", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", + "displayName": "Protected Mode", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation", - "displayName": "Ask where to save downloaded files", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", + "displayName": "Use Pop-up Blocker", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed", - "displayName": "Allow QUIC protocol", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended", - "displayName": "Set application locale", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_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", + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_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", + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist", + "displayName": "Restrict search providers to a specific list", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist_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", + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings", + "displayName": "Security Zones: Use only machine settings", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended", - "displayName": "Block third party cookies", + "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_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended", - "displayName": "Set download directory", + "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_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions", - "displayName": "Download restrictions (Device)", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_2", - "displayName": "Block potentially dangerous downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", - "displayName": "Block all downloads", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended", - "displayName": "Enable favorites bar", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended", - "displayName": "Allow importing of favorites", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended", - "displayName": "Allow importing of payment info", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended", - "displayName": "Enable network prediction", + "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_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_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)", + "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_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_0", - "displayName": "Predict network actions on any network connection", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "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.)", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", "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", + "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_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended", - "displayName": "Enable search suggestions", + "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_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended", - "displayName": "Disable synchronization of data using Microsoft sync services", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended", - "displayName": "Enable Translate", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", - "displayName": "Register protocol handlers", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended", - "displayName": "Print headers and footers", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended", - "displayName": "Configure Microsoft Defender SmartScreen", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_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", + "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_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended", - "displayName": "Configure the home page URL", + "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_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_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", + "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_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_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)", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", - "displayName": "Open a new tab", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions", + "displayName": "Logon options", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options (Device)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod", - "displayName": "Set the time period for update notifications", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_0", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_1", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_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", + "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_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "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", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", "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", + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder", + "displayName": "Use forest search order", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_0", + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_1", + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_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)", + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_forestsearchlist", + "displayName": "Forests to Search (Device)", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode", - "displayName": "Extend Adobe Flash content setting to all content", + "id": "device_vendor_msft_policy_config_kerberos_cloudkerberosticketretrievalenabled", + "displayName": "Cloud Kerberos Ticket Retrieval Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_0", + "id": "device_vendor_msft_policy_config_kerberos_cloudkerberosticketretrievalenabled_0", "displayName": "Disabled", - "description": null + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_1", + "id": "device_vendor_msft_policy_config_kerberos_cloudkerberosticketretrievalenabled_1", "displayName": "Enabled", - "description": null + "description": "Enabled." } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled", - "displayName": "Disable saving browser history", + "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_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_0", + "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_1", + "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled", - "displayName": "Enable search suggestions", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmconfiguration", + "displayName": "PK Init Hash Algorithm Configuration", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmconfiguration_0", + "displayName": "Disabled / Not Configured", + "description": "Disabled / Not Configured" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_1", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmconfiguration_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha1", + "displayName": "PK Init Hash Algorithm SHA1", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha1_0", + "displayName": "Not Supported", + "description": "Not Supported" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha1_1", + "displayName": "Default", + "description": "Default" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha1_2", + "displayName": "Audited", + "description": "Audited" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha1_3", + "displayName": "Supported", + "description": "Supported" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha256", + "displayName": "PK Init Hash Algorithm SHA256", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha256_0", + "displayName": "Not Supported", + "description": "Not Supported" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha256_1", + "displayName": "Default", + "description": "Default" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha256_2", + "displayName": "Audited", + "description": "Audited" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha256_3", + "displayName": "Supported", + "description": "Supported" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices", - "displayName": "Send site information to improve Microsoft services", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha384", + "displayName": "PK Init Hash Algorithm SHA384", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha384_0", + "displayName": "Not Supported", + "description": "Not Supported" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha384_1", + "displayName": "Default", + "description": "Default" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha384_2", + "displayName": "Audited", + "description": "Audited" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha384_3", + "displayName": "Supported", + "description": "Supported" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar", - "displayName": "Show Microsoft Office shortcut in favorites bar", + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha512", + "displayName": "PK Init Hash Algorithm SHA512", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha512_0", + "displayName": "Not Supported", + "description": "Not Supported" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha512_1", + "displayName": "Default", + "description": "Default" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha512_2", + "displayName": "Audited", + "description": "Audited" + }, + { + "id": "device_vendor_msft_policy_config_kerberos_pkinithashalgorithmsha512_3", + "displayName": "Supported", + "description": "Supported" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess", - "displayName": "Enable site isolation for every site", + "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_microsoft_edge~policy~microsoft_edge_siteperprocess_0", + "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_1", + "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled", - "displayName": "Enable spellcheck", + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation", + "displayName": "Require strict KDC validation", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_0", + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_1", + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage", - "displayName": "Enable specific spellcheck languages", + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize", + "displayName": "Set maximum Kerberos SSPI context token buffer size", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_0", + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_1", + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_spellchecklanguagedesc", - "displayName": "Enable specific spellcheck languages (Device)", + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_maxtokensize", + "displayName": "Maximum size (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", + "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_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin", - "displayName": "Minimum TLS version enabled", + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton", + "displayName": "Enable Home Button", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin", - "displayName": "Minimum SSL version enabled (Device)", + "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons", + "displayName": "Enable Navigation Buttons", "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_kioskbrowser_enablenavigationbuttons_1", + "displayName": "Enable", + "description": "Enable" }, { - "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_kioskbrowser_enablenavigationbuttons_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning", - "displayName": "Suppress the unsupported OS warning", + "id": "device_vendor_msft_policy_config_kioskbrowser_restartonidletime", + "displayName": "Restart On Idle Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportencryption", + "displayName": "Audit Client Does Not Support Encryption", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_0", + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportencryption_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_1", + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportencryption_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled", - "displayName": "Disable synchronization of data using Microsoft sync services", + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportsigning", + "displayName": "Audit Client Does Not Support Signing", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_0", + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportsigning_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_1", + "id": "device_vendor_msft_policy_config_lanmanserver_auditclientdoesnotsupportsigning_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled", - "displayName": "Configure tab lifecycles", + "id": "device_vendor_msft_policy_config_lanmanserver_auditinsecureguestlogon", + "displayName": "Audit Insecure Guest Logon", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_0", + "id": "device_vendor_msft_policy_config_lanmanserver_auditinsecureguestlogon_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_1", + "id": "device_vendor_msft_policy_config_lanmanserver_auditinsecureguestlogon_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled", - "displayName": "Enable ending processes in the Browser task manager", + "id": "device_vendor_msft_policy_config_lanmanserver_authratelimiterdelayinms", + "displayName": "Auth Rate Limiter Delay In Ms", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_enableauthratelimiter", + "displayName": "Enable Auth Rate Limiter", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_0", + "id": "device_vendor_msft_policy_config_lanmanserver_enableauthratelimiter_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_1", + "id": "device_vendor_msft_policy_config_lanmanserver_enableauthratelimiter_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled", - "displayName": "Enable Translate", + "id": "device_vendor_msft_policy_config_lanmanserver_enablemailslots", + "displayName": "Enable Mailslots", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_0", + "id": "device_vendor_msft_policy_config_lanmanserver_enablemailslots_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_1", + "id": "device_vendor_msft_policy_config_lanmanserver_enablemailslots_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist", - "displayName": "Define a list of allowed URLs", + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect", + "displayName": "Max Smb2 Dialect", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect_514", + "displayName": "SMB 2.0.2", + "description": "SMB 2.0.2" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect_528", + "displayName": "SMB 2.1.0", + "description": "SMB 2.1.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect_768", + "displayName": "SMB 3.0.0", + "description": "SMB 3.0.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect_770", + "displayName": "SMB 3.0.2", + "description": "SMB 3.0.2" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_maxsmb2dialect_785", + "displayName": "SMB 3.1.1", + "description": "SMB 3.1.1" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect", + "displayName": "Min Smb2 Dialect", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect_514", + "displayName": "SMB 2.0.2", + "description": "SMB 2.0.2" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect_528", + "displayName": "SMB 2.1.0", + "description": "SMB 2.1.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect_768", + "displayName": "SMB 3.0.0", + "description": "SMB 3.0.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect_770", + "displayName": "SMB 3.0.2", + "description": "SMB 3.0.2" + }, + { + "id": "device_vendor_msft_policy_config_lanmanserver_minsmb2dialect_785", + "displayName": "SMB 3.1.1", + "description": "SMB 3.1.1" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditinsecureguestlogon", + "displayName": "Audit Insecure Guest Logon", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditinsecureguestlogon_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditinsecureguestlogon_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportencryption", + "displayName": "Audit Server Does Not Support Encryption", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportencryption_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportencryption_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed", - "displayName": "Allow or block video capture", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportsigning", + "displayName": "Audit Server Does Not Support Signing", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportsigning_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_auditserverdoesnotsupportsigning_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls", - "displayName": "Sites that can access video capture devices without requesting permission", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons", + "displayName": "Enable Insecure Guest Logons", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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)", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enablemailslots", + "displayName": "Enable Mailslots", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enablemailslots_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_enablemailslots_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling", - "displayName": "Restrict exposure of local IP address by WebRTC", + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect", + "displayName": "Max Smb2 Dialect", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect_514", + "displayName": "SMB 2.0.2", + "description": "SMB 2.0.2" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect_528", + "displayName": "SMB 2.1.0", + "description": "SMB 2.1.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect_768", + "displayName": "SMB 3.0.0", + "description": "SMB 3.0.0" + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect_770", + "displayName": "SMB 3.0.2", + "description": "SMB 3.0.2" + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_maxsmb2dialect_785", + "displayName": "SMB 3.1.1", + "description": "SMB 3.1.1" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling", - "displayName": "Restrict exposure of localhost IP address by WebRTC (Device)", + "id": "device_vendor_msft_policy_config_lanmanworkstation_minsmb2dialect", + "displayName": "Min Smb2 Dialect", "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_lanmanworkstation_minsmb2dialect_514", + "displayName": "SMB 2.0.2", + "description": "SMB 2.0.2" }, { - "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_lanmanworkstation_minsmb2dialect_528", + "displayName": "SMB 2.1.0", + "description": "SMB 2.1.0" }, { - "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_lanmanworkstation_minsmb2dialect_768", + "displayName": "SMB 3.0.0", + "description": "SMB 3.0.0" }, { - "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_lanmanworkstation_minsmb2dialect_770", + "displayName": "SMB 3.0.2", + "description": "SMB 3.0.2" + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_minsmb2dialect_785", + "displayName": "SMB 3.1.1", + "description": "SMB 3.1.1" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange", - "displayName": "Restrict the range of local UDP ports used by WebRTC", + "id": "device_vendor_msft_policy_config_lanmanworkstation_requireencryption", + "displayName": "Require Encryption", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_0", + "id": "device_vendor_msft_policy_config_lanmanworkstation_requireencryption_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_1", + "id": "device_vendor_msft_policy_config_lanmanworkstation_requireencryption_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_licensing_allowwindowsentitlementreactivation", + "displayName": "Allow Windows Entitlement Reactivation", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_0", - "displayName": "Disabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls", - "displayName": "Automatically select client certificates for these sites", + "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation", + "displayName": "Disallow KMS Client Online AVS Validation", "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_licensing_disallowkmsclientonlineavsvalidation_0", + "displayName": "Block", + "description": "Disabled." }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation_1", + "displayName": "Allow", + "description": "Enabled." } ] }, { - "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", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts", + "displayName": "Accounts Block Microsoft Accounts", "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_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_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_1", - "displayName": "Enabled", - "description": null + "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_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", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus", + "displayName": "Accounts Enable Administrator Account Status", "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_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "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_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_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls", - "displayName": "Limit cookies from specific websites to the current session", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_1", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_renameadministratoraccount", + "displayName": "Accounts Rename Administrator Account", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting", - "displayName": "Configure cookies", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_renameguestaccount", + "displayName": "Accounts Rename Guest Account", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_audit_audittheuseofbackupandrestoreprivilege", + "displayName": "Audit The Use Of Backup And Restoreprivilege", "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_localpoliciessecurityoptions_audit_audittheuseofbackupandrestoreprivilege_aq==", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_audit_audittheuseofbackupandrestoreprivilege_aa==", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting", - "displayName": "Configure cookies (Device)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_audit_forceauditpolicysubcategorysettingstooverrideauditpolicycategorysettings", + "displayName": "Audit Force Audit Policy Subcategory Settings To Override Audit Policy Category Settings", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_audit_shutdownsystemimmediatelyifunabletologsecurityaudits", + "displayName": "Audit Shutdown System Immediately If Unable To Log Security Audits", + "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_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_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_1", + "displayName": "Allow", + "description": "Allow" }, { - "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_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_0", + "displayName": "Block", + "description": "Block" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting", - "displayName": "Default geolocation setting", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", - "displayName": "Default geolocation setting (Device)", + "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_devices_restrictfloppyaccesstolocallyloggedonuseronly", + "displayName": "Devices Restrict Floppy Access To Locally Logged On User Only", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_digitallyencryptorsignsecurechanneldataalways", + "displayName": "Domain Member Digitally Encrypt Or Sign Secure Channel Data Always", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_digitallyencryptsecurechanneldatawhenpossible", + "displayName": "Domain Member Digitally Encrypt Secure Channel Data When Possible", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_digitallysignsecurechanneldatawhenpossible", + "displayName": "Domain Member Digitally Sign Secure Channel Data When Possible", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_disablemachineaccountpasswordchanges", + "displayName": "Domain Member Disable Machine Account Password Changes", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_maximummachineaccountpasswordage", + "displayName": "Domain Member Maximum Machine Account Password Age", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_domainmember_requirestrongsessionkey", + "displayName": "Domain Member Require Strong Session Key", + "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_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_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_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_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked_2", + "displayName": "User display name only", + "description": "User display name only" }, { - "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_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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting", - "displayName": "Default images setting", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_0", - "displayName": "Disabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting", - "displayName": "Default images setting (Device)", + "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_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_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin_0", + "displayName": "Disabled (username will be shown)", + "description": "Disabled (username will be shown)" }, { - "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_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin_1", + "displayName": "Enabled (username will not be shown)", + "description": "Enabled (username will not be shown)" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting", - "displayName": "Default JavaScript setting", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel", + "displayName": "Interactive Logon Do Not Require CTRLALTDEL", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_1", - "displayName": "Enabled", - "description": null + "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_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_localpoliciessecurityoptions_interactivelogon_machineaccountlockoutthreshold", + "displayName": "Interactive Logon Machine Account Lockout Threshold", + "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting", - "displayName": "Default notification setting", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit", + "displayName": "[Deprecated] Interactive Logon Machine Inactivity Limit (Deprecated)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting", - "displayName": "Default notification setting (Device)", + "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_numberofpreviouslogonstocache", + "displayName": "Interactive Logon Number Of Previous Logons To Cache", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_promptusertochangepasswordbeforeexpiration", + "displayName": "Interactive Logon Prompt User To Change Password Before Expiration", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_1", - "displayName": "Allow sites to show desktop notifications", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_0", + "displayName": "No Action", + "description": "No Action" }, { - "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_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_1", + "displayName": "Lock Workstation", + "description": "Lock Workstation" }, { - "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_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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting", - "displayName": "Default Adobe Flash setting", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways", + "displayName": "Microsoft Network Client Digitally Sign Communications Always", "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_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting", - "displayName": "Default Adobe Flash setting (Device)", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_2", - "displayName": "Block the Adobe Flash plugin", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_1", + "displayName": "Enable", + "description": "Enable" }, { - "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_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting", - "displayName": "Default pop-up window setting", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting", - "displayName": "Default pop-up window setting (Device)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_amountofidletimerequiredbeforesuspendingsession", + "displayName": "Microsoft Network Server Amount Of Idle Time Required Before Suspending Session", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways", + "displayName": "Microsoft Network Server Digitally Sign Communications Always", "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_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_1", + "displayName": "Enable", + "description": "Enable" }, { - "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_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting", - "displayName": "Control use of the Web Bluetooth API", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", - "displayName": "Control use of the Web Bluetooth API (Device)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_disconnectclientswhenlogonhoursexpire", + "displayName": "Microsoft Network Server Disconnect Clients When Logon Hours Expire", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_serverspntargetnamevalidationlevel", + "displayName": "Microsoft Network Server Server SPN Target Name Validation Level", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_allowanonymoussidornametranslation", + "displayName": "Network Access Allow Anonymous SID Or Name Translation", "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_localpoliciessecurityoptions_networkaccess_allowanonymoussidornametranslation_1", + "displayName": "Enable", + "description": "Enable" }, { - "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_localpoliciessecurityoptions_networkaccess_allowanonymoussidornametranslation_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting", - "displayName": "Control use of the WebUSB API", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_1", + "displayName": "Enabled", + "description": "Enabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_0", + "displayName": "Disabled", + "description": "Disabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting", - "displayName": "Control use of the WebUSB API (Device)", + "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_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_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_1", + "displayName": "Enabled", + "description": "Enabled" }, { - "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_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_0", + "displayName": "Disabled", + "description": "Disabled" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls", - "displayName": "Allow images on these sites", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowstorageofpasswordsandcredentialsfornetworkauthentication", + "displayName": "Network Access Do Not Allow Storage Of Passwords And Credentials For Network Authentication", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_leteveryonepermissionsapplytoanonymoususers", + "displayName": "Network Access Let Everyone Permissions Apply To Anonymous Users", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_namedpipesthatcanbeaccessedanonymously", + "displayName": "Network Access Named Pipes That Can Be Accessed Anonymously", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_remotelyaccessibleregistrypaths", + "displayName": "Network Access Remotely Accessible Registry Paths", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_remotelyaccessibleregistrypathsandsubpaths", + "displayName": "Network Access Remotely Accessible Registry Paths And Subpaths", + "options": null + }, + { + "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_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_imagesallowedforurlsdesc", - "displayName": "Allow images on these sites (Device)", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls", - "displayName": "Block images on specific sites", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_sharesthatcanbeaccessedanonymously", + "displayName": "Network Access Shares That Can Be Accessed Anonymously", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_sharingandsecuritymodelforlocalaccounts", + "displayName": "Network Access Sharing And Security Model For Local Accounts", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemnullsessionfallback", + "displayName": "Network Security Allow Local System NULL Session Fallback", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_1", + "displayName": "Allow", + "description": "Allow" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_0", + "displayName": "Block", + "description": "Block" } ] }, { - "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", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests", + "displayName": "Network Security Allow PKU2U Authentication Requests", "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_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_0", + "displayName": "Block", + "description": "Block" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_1", + "displayName": "Allow", + "description": "Allow" } ] }, { - "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", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "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_localpoliciessecurityoptions_networksecurity_forcelogoffwhenlogonhoursexpire", + "displayName": "Network Security Force Logoff When Logon Hours Expire", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_forcelogoffwhenlogonhoursexpire_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_forcelogoffwhenlogonhoursexpire_0", + "displayName": "Disable", + "description": "Disable" + } + ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls", - "displayName": "Allow notifications on specific sites", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel", + "displayName": "Network Security LAN Manager Authentication Level", "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_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_0", + "displayName": "Send LM and NTLM responses", + "description": "Send LM and NTLM responses" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_1", - "displayName": "Enabled", - "description": null + "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 NTLMv2 responses only", + "description": "Send NTLMv2 responses only" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_4", + "displayName": "Send NTLMv2 responses only. Refuse LM", + "description": "Send NTLMv2 responses only. Refuse LM" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_5", + "displayName": "Send NTLMv2 responses only. Refuse LM and NTLM", + "description": "Send NTLMv2 responses only. Refuse LM and NTLM" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_notificationsallowedforurlsdesc", - "displayName": "Allow notifications on specific sites (Device)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_ldapclientsigningrequirements", + "displayName": "Network Security LDAP Client Signing Requirements", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls", - "displayName": "Block notifications on specific sites", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_0", + "displayName": "None", + "description": "None" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_1", - "displayName": "Enabled", - "description": null + "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_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", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_0", + "displayName": "None", + "description": "None" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_pluginsallowedforurlsdesc", - "displayName": "Allow the Adobe Flash plug-in on specific sites (Device)", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls", - "displayName": "Block the Adobe Flash plug-in on specific sites", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_auditincomingntlmtraffic_0", + "displayName": "Disable", + "description": "Disable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_1", - "displayName": "Enabled", - "description": null + "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_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_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_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls", - "displayName": "Allow pop-up windows on specific sites", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers_0", + "displayName": "Allow all", + "description": "Allow all" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_popupsallowedforurlsdesc", - "displayName": "Allow pop-up windows on specific sites (Device)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_recoveryconsole_allowautomaticadministrativelogon", + "displayName": "Recovery Console Allow Automatic Administrative Logon", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls", - "displayName": "Block pop-up windows on specific sites", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_recoveryconsole_allowfloppycopyandaccesstoalldrivesandallfolders", + "displayName": "Recovery Console Allow Floppy Copy And Access To All Drives And All Folders", + "options": null + }, + { + "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_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_1", - "displayName": "Enabled", - "description": null + "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_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", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile", + "displayName": "Shutdown Clear Virtual Memory Page File", "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_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "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)", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_systemcryptography_forcestrongkeyprotection", + "displayName": "System Cryptography Force Strong Key Protection", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls", - "displayName": "Allow WebUSB on specific sites", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_systemobjects_requirecaseinsensitivityfornonwindowssubsystems", + "displayName": "System Objects Require Case Insensitivity For Non Windows Subsystems", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_systemobjects_strengthendefaultpermissionsofinternalsystemobjects", + "displayName": "System Objects Strengthen Default Permissions Of Internal System Objects", + "options": null + }, + { + "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_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_allowuiaccessapplicationstopromptforelevation_0", + "displayName": "disabled", + "description": "disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_webusbaskforurlsdesc", - "displayName": "Allow WebUSB on specific sites (Device)", - "options": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls", - "displayName": "Block WebUSB on specific sites", + "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_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_0", + "displayName": "Elevate without prompting", + "description": "Elevate without prompting" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_webusbblockedforurlsdesc", - "displayName": "Block WebUSB on specific sites (Device)", - "options": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled", - "displayName": "Enable the default search provider", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_0", - "displayName": "Disabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings", - "displayName": "Default search provider encodings", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_0", - "displayName": "Disabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated_1", + "displayName": "Enabled: Enforces validation.", + "description": "Enabled: Enforces validation." } ] }, { - "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_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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl", - "displayName": "Specifies the search-by-image feature for the default search provider", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_1", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_0", - "displayName": "Disabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_defaultsearchproviderkeyword", - "displayName": "Default search provider keyword (Device)", - "options": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername", - "displayName": "Default search provider name", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_0", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_1", + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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", + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps_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", + "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess", + "displayName": "Configure Lsa Protected Process", "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_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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_defaultsearchprovidersuggesturl", - "displayName": "Default search provider URL for suggestions (Device)", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure", + "displayName": "Group Configuration", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes", - "displayName": "Configure allowed extension types", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action_add_update", + "displayName": "Add (Update)", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc", + "displayName": "Local group", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_administrators", + "displayName": "Administrators", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_1", - "displayName": "Enabled", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_extensioninstallallowlistdesc", - "displayName": "Extension IDs to exempt from the block list (Device)", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_users", + "displayName": "Selected user(s)", "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist", - "displayName": "Control which extensions cannot be installed", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype", + "displayName": "User selection type", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_0", - "displayName": "Disabled", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_users", + "displayName": "Users/Groups", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_1", - "displayName": "Enabled", + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_manual", + "displayName": "Manual", "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_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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist", - "displayName": "Control which extensions are installed silently", + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode", + "displayName": "Specify server", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_0", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_1", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_extensioninstallforcelistdesc", - "displayName": "Extension/App IDs and update URLs to be silently installed (Device)", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources", - "displayName": "Configure extension and user script install sources", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_0", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_1", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_extensioninstallsourcesdesc", - "displayName": "URL patterns to allow extension, app, and user script installs from (Device)", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings", - "displayName": "Configure extension management settings", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_0", + "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_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_1", + "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_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", + "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_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_0", + "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_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_1", + "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_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar", - "displayName": "Show the cast icon in the toolbar", + "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_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_0", + "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_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_1", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt", - "displayName": "Allow cross-origin HTTP Basic Auth prompts", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_1", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist", - "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_1", + "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_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", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_1", + "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_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", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_1", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_authserverallowlist", - "displayName": "Configure list of allowed authentication servers (Device)", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup", - "displayName": "Disable CNAME lookup when negotiating Kerberos authentication", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_1", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport", - "displayName": "Include non-standard port in Kerberos SPN", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_0", + "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_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_1", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist", - "displayName": "Control which native messaging hosts users can use", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_0", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_1", + "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_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", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_0", - "displayName": "Disabled", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_1", - "displayName": "Enabled", + "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_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)", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_0", + "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_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_1", + "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_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled", - "displayName": "Enable saving passwords to the password manager", - "options": [ + "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_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_0", - "displayName": "Disabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_1", - "displayName": "Enabled", - "description": null + "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_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl", - "displayName": "Configure the change password URL", + "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate", + "displayName": "Enable Offline Maps Auto Update", "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_maps_enableofflinemapsautoupdate_0", + "displayName": "Disabled. Force off auto-update.", + "description": "Disabled. Force off auto-update." }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_1", - "displayName": "Enabled", - "description": null + "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_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", + "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump", + "displayName": "Allow Crash Dump", "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_memorydump_allowcrashdump_0", + "displayName": "Block", + "description": "Disable crash dump collection." }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump_1", + "displayName": "Allow", + "description": "Allow crash dump collection." } ] }, { - "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", + "id": "device_vendor_msft_policy_config_memorydump_allowlivedump", + "displayName": "Allow Live Dump", "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_memorydump_allowlivedump_0", + "displayName": "Block", + "description": "Disable live dump collection." }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_1", - "displayName": "Enabled", - "description": null + "id": "device_vendor_msft_policy_config_memorydump_allowlivedump_1", + "displayName": "Allow", + "description": "Allow live dump collection." } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", - "displayName": "Configure password protection warning trigger (Device)", + "id": "device_vendor_msft_policy_config_messaging_allowmessagesync", + "displayName": "Allow Message Sync", "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_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_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_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~policy~microsoft_edge~printing_defaultprinterselection", - "displayName": "Default printer selection rules", + "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~policy~microsoft_edge~printing_defaultprinterselection_0", + "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~policy~microsoft_edge~printing_defaultprinterselection_1", + "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~policy~microsoft_edge~printing_defaultprinterselection_defaultprinterselection", - "displayName": "Default printer selection rules (Device)", + "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~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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_key", + "displayName": "Name", + "options": 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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_value", + "displayName": "Value", + "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter", - "displayName": "Set the system default printer as the default printer", + "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~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_0", + "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~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_1", + "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~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_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~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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_key", + "displayName": "Name", + "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_proxybypasslist", - "displayName": "Comma-separated list of proxy bypass rules (Device)", + "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~policy~microsoft_edge~proxy_proxymode", - "displayName": "Configure proxy server settings", + "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~policy~microsoft_edge~proxy_proxymode_0", + "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~policy~microsoft_edge~proxy_proxymode_1", + "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~policy~microsoft_edge~proxy_proxymode_proxymode", - "displayName": "Configure proxy server settings (Device)", + "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~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", + "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~policy~microsoft_edge~proxy_proxymode_proxymode_fixed_servers", - "displayName": "Use fixed proxy servers", + "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~policy~microsoft_edge~proxy_proxymode_proxymode_system", - "displayName": "Use system proxy settings", + "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~policy~microsoft_edge~proxy_proxypacurl", - "displayName": "Set the proxy .pac file URL", + "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~policy~microsoft_edge~proxy_proxypacurl_0", + "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~policy~microsoft_edge~proxy_proxypacurl_1", + "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~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", + "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~policy~microsoft_edge~proxy_proxyserver_0", + "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~policy~microsoft_edge~proxy_proxyserver_1", + "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~policy~microsoft_edge~proxy_proxyserver_proxyserver", - "displayName": "Configure address or URL of proxy server (Device)", + "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~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_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc_key", + "displayName": "Name", + "options": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_proxysettings", - "displayName": "Proxy settings (Device)", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride", - "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_0", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_1", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles", - "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_0", + "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~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_1", + "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~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_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~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_smartscreenallowlistdomainsdesc", - "displayName": "Configure the list of domains for which SmartScreen won't trigger warnings (Device)", + "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~policy~microsoft_edge~smartscreen_smartscreenenabled", - "displayName": "Configure Microsoft Defender SmartScreen", + "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~policy~microsoft_edge~smartscreen_smartscreenenabled_0", + "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~policy~microsoft_edge~smartscreen_smartscreenenabled_1", + "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~startup_homepageisnewtabpage", - "displayName": "Set the new tab page as the home page", + "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~startup_homepageisnewtabpage_0", + "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~startup_homepageisnewtabpage_1", + "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~startup_homepagelocation", - "displayName": "Configure the home page URL", + "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~startup_homepagelocation_0", + "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~startup_homepagelocation_1", + "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~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", + "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~startup_newtabpagehidedefaulttopsites_0", + "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~startup_newtabpagehidedefaulttopsites_1", + "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~startup_newtabpagelocation", - "displayName": "Configure the new tab page URL", + "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~startup_newtabpagelocation_0", + "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~startup_newtabpagelocation_1", + "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~startup_newtabpagelocation_newtabpagelocation", - "displayName": "New tab page URL (Device)", + "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~startup_restoreonstartup", - "displayName": "Action to take on startup", + "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~startup_restoreonstartup_0", + "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~startup_restoreonstartup_1", + "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~startup_restoreonstartup_restoreonstartup", - "displayName": "Action to take on startup (Device)", + "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~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", + "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~startup_restoreonstartup_restoreonstartup_4", - "displayName": "Open a list of URLs", + "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~startup_restoreonstartupurls", - "displayName": "Sites to open when the browser starts", + "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~startup_restoreonstartupurls_0", + "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~startup_restoreonstartupurls_1", + "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~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", + "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~startup_showhomebutton_0", + "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~startup_showhomebutton_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions", - "displayName": "Allow download restrictions", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", - "displayName": "Download restrictions (Device)", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_0", - "displayName": "No special restrictions", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1", - "displayName": "Block malicious downloads and dangerous file types", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", - "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", - "displayName": "Block all downloads", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_4", - "displayName": "Block malicious downloads", + "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_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended", - "displayName": "Allow download restrictions", + "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_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_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)", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_4", - "displayName": "Block malicious downloads", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled", - "displayName": "Configure if the ads transparency feature is enabled", + "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_edgev100~policy~microsoft_edge_adstransparencyenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled", + "displayName": "Enable guest mode", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_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", + "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_edgev100~policy~microsoft_edge_pdfsecuremode_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_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", + "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_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_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", + "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_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_0", - "displayName": "Disabled", + "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_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_1", - "displayName": "Enabled", + "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_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting", - "displayName": "Control use of the WebHID API (Device)", + "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_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting_2", - "displayName": "Do not allow any site to request access to HID devices via the WebHID API", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls", - "displayName": "Allow the WebHID API on these sites", + "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_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_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)", + "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_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls", - "displayName": "Block the WebHID API on these sites", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_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)", + "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_edgev101~policy~microsoft_edge_configurekeyboardshortcuts", - "displayName": "Configure the list of commands for which to disable keyboard shortcuts", + "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_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_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)", + "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_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled", - "displayName": "Allow features to download assets from the Asset Delivery Service", + "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_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_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", + "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_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_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", + "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_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_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", + "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_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_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", + "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_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_0", - "displayName": "Disabled", + "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_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_1", - "displayName": "Enabled", + "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_edgev101~policy~microsoft_edge_sitesafetyservicesenabled", - "displayName": "Allow users to configure Site safety services", + "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_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled", - "displayName": "Default Profile Setting Enabled", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots", + "displayName": "Disable taking screenshots", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_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", + "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_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled", - "displayName": "Enable the network service sandbox", + "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_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_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", + "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_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_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", + "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_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_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)", + "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_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", - "displayName": "Disabled", + "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_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_1", - "displayName": "Enabled", + "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_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled", - "displayName": "Control the User-Agent Client Hints GREASE Update feature", + "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_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_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", + "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_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_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)", + "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_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay", - "displayName": "Display zoom in IE Mode tabs with DPI Scale included like it is in Internet Explorer", + "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_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed", - "displayName": "Live captions allowed", + "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_edgev103~policy~microsoft_edge_livecaptionsallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_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", + "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_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled", - "displayName": "Guided Switch Enabled", + "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_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_0", - "displayName": "Disabled", + "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_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", + "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_edgev104~policy~microsoft_edge_alloweddomainsforapps_1", - "displayName": "Enabled", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled", + "displayName": "Enable favorites bar", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_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)", + "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_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_0", - "displayName": "Do not enable code integrity guard in the browser process.", + "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_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_1", - "displayName": "Enable code integrity guard audit mode in the browser process.", + "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_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_2", - "displayName": "Enable code integrity guard enforcement in the browser process.", + "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_edgev104~policy~microsoft_edge_doubleclickclosetabenabled", - "displayName": "Double Click feature in Microsoft Edge enabled (only available in China)", + "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_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled", - "displayName": "Enable Drop feature in Microsoft Edge", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_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", + "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_edgev104~policy~microsoft_edge_importoneachlaunch_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_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", + "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_edgev104~policy~microsoft_edge_pdfxfaenabled_0", - "displayName": "Disabled", + "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_edgev104~policy~microsoft_edge_pdfxfaenabled_1", - "displayName": "Enabled", + "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_edgev104~policy~microsoft_edge_quicksearchshowminimenu", - "displayName": "Enables Microsoft Edge mini menu", + "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_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_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", + "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_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_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", + "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_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled", - "displayName": "Text prediction enabled by default", + "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_edgev104~policy~microsoft_edge_textpredictionenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_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", + "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_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_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", + "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_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_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", + "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_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled", - "displayName": "Spell checking provided by Microsoft Editor", + "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_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_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", + "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_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_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", + "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_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_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)", + "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_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.", + "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_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.", + "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_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_4", - "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "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_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled", - "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated)", + "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_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_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", + "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_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", - "displayName": "Disabled", + "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_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_1", - "displayName": "Enabled", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended", - "displayName": "Efficiency mode enabled", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_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", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled", - "displayName": "Efficiency mode enabled", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_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", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault", - "displayName": "Print PDF as Image Default", + "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_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_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", + "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_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions", + "displayName": "Enable network prediction", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_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", + "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_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", - "displayName": "Disabled", + "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_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_1", - "displayName": "Enabled", + "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_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended", - "displayName": "Performance Detector Enabled", + "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_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled", - "displayName": "Web Select Enabled", + "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_edgev107~policy~microsoft_edge_webselectenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess", - "displayName": "Force WebSQL to be enabled", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled", + "displayName": "Enable full-tab promotional content (deprecated)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_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)", + "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_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled", - "displayName": "Enable Workspaces", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed", + "displayName": "Allow QUIC protocol", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled", - "displayName": "Enable the linked account feature", + "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_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_0", + "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_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_1", + "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_edgev107~policy~microsoft_edge~performance_performancedetectorenabled", - "displayName": "Performance Detector Enabled", + "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_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_0", + "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_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_1", + "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_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled", - "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured", + "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_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_0", + "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_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_1", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting", - "displayName": "Set the default \"share additional operating system region\" setting", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_1", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting", - "displayName": "'Set the default \"share additional operating system region\" setting (Device)", + "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_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", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_2", - "displayName": "Never share the OS Regional format", + "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_edgev108~policy~microsoft_edge_encryptedclienthelloenabled", - "displayName": "TLS Encrypted ClientHello Enabled", + "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_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", + "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_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_1", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended", - "displayName": "Set the default \"share additional operating system region\" setting", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_0", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_1", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting", - "displayName": "'Set the default \"share additional operating system region\" setting (Device)", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_0", - "displayName": "Limited", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_1", - "displayName": "Always share the OS Regional format", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_2", - "displayName": "Never share the OS Regional format", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled", - "displayName": "Hide App Launcher on Microsoft Edge new tab page", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_0", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_1", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls", - "displayName": "Allow clipboard use on specific sites", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls_1", + "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_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", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls_1", + "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_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", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_1", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting", - "displayName": "Default clipboard site permission (Device)", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_2", - "displayName": "Do not allow any site to use the clipboard site permission", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_3", - "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "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_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)", + "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_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", + "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_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_1", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls", - "displayName": "Allow listed sites to connect to any HID device", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_0", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_1", + "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_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", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_0", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_1", + "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_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", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_0", - "displayName": "Disabled", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_1", - "displayName": "Enabled", + "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_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", + "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_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", + "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_edgev110~policy~microsoft_edge_autofillmembershipsenabled_1", + "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_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended", - "displayName": "Save and fill memberships", + "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_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_0", + "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_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_1", + "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_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended", - "displayName": "Search Filters Enabled", + "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_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_0", + "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_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_1", + "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_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended", - "displayName": "Configure the sticky print preview settings", + "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_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_0", + "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_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_1", + "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_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", + "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_edgev110~policy~microsoft_edge_searchfiltersenabled_0", + "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_edgev110~policy~microsoft_edge_searchfiltersenabled_1", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled", - "displayName": "Search in Sidebar enabled", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled", - "displayName": "Search in Sidebar enabled (Device)", + "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_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", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_2", - "displayName": "Disable search in sidebar", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls", - "displayName": "Allow multiple automatic downloads in quick succession on specific sites", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_0", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_1", + "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_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", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_0", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_1", + "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_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", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_0", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_1", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting", - "displayName": "Default automatic downloads setting (Device)", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_1", - "displayName": "Allow all websites to perform automatic downloads", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_2", - "displayName": "Don't allow any website to perform automatic downloads", + "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_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings", - "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces", + "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_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_0", + "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_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_1", + "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_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_workspacesnavigationsettings", - "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces (Device)", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled", - "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action to take on Microsoft Edge startup", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_0", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_1", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", - "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_0", - "displayName": "Disabled", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_1", - "displayName": "Enabled", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings", - "displayName": "Configure the sticky print preview settings", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_0", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_1", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_printpreviewstickysettings", - "displayName": "Configure the sticky print preview settings (Device)", + "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_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled", - "displayName": "Clear history for IE and IE mode every time you exit", + "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_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", + "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_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_1", + "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_edgev111~policy~microsoft_edge_newpdfreaderenabled", - "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled", + "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_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_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", + "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_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_0", - "displayName": "Disabled", + "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_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_1", - "displayName": "Enabled", + "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_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed", - "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context", + "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_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_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", + "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_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", - "displayName": "Enable CryptoWallet feature", + "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_edgev112~policy~microsoft_edge_cryptowalletenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled", - "displayName": "Mouse Gesture Enabled", + "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_edgev112~policy~microsoft_edge_mousegestureenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_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", + "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_edgev113~policy~microsoft_edge_readaloudenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview", - "displayName": "Restore PDF view", + "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_edgev113~policy~microsoft_edge_restorepdfview_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled", - "displayName": "Enable tab organization suggestions", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled", + "displayName": "Enable search suggestions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled", - "displayName": "Enables default browser settings campaigns", + "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_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_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", + "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_edgev114~policy~microsoft_edge_discoverpagecontextenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_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)", + "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_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton", - "displayName": "Show Downloads button on the toolbar", + "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_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled", - "displayName": "Standalone Sidebar Enabled", + "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_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled", + "displayName": "Enable spellcheck", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_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", + "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_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_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", + "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_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended", - "displayName": "Wallet Donation Enabled", + "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_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled", - "displayName": "Search for image enabled", + "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_edgev115~policy~microsoft_edge_searchforimageenabled_0", - "displayName": "Disabled", + "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_edgev115~policy~microsoft_edge_searchforimageenabled_1", - "displayName": "Enabled", + "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_edgev115~policy~microsoft_edge_walletdonationenabled", - "displayName": "Wallet Donation Enabled", + "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_edgev115~policy~microsoft_edge_walletdonationenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled", - "displayName": "Microsoft Edge management enabled", + "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_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken", - "displayName": "Microsoft Edge management enrollment token", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled", + "displayName": "Configure tab lifecycles", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_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", + "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_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled", + "displayName": "Enable Translate", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_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", + "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_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_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", + "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_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_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)", + "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_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting_1", - "displayName": "Let third-party storage partitioning to be enabled.", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_0", + "displayName": "Disabled", "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.", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_1", + "displayName": "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", + "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_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_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", + "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_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications", - "displayName": "Allows system notifications", + "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_edgev117~policy~microsoft_edge_allowsystemnotifications_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled", - "displayName": "Edge Wallet E-Tree Enabled", + "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_edgev117~policy~microsoft_edge_edgewalletetreeenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_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", + "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_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_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", + "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_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_0", - "displayName": "Disabled", + "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_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_1", - "displayName": "Enabled", + "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_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended", - "displayName": "Enable Gamer Mode", + "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_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed", - "displayName": "Enable the Search bar", + "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_edgev117~policy~microsoft_edge_searchbarallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_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", + "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_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_0", + "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_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_1", + "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_edgev117~policy~microsoft_edge_showhistorythumbnails", - "displayName": "Show thumbnail images for browsing history", + "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_edgev117~policy~microsoft_edge_showhistorythumbnails_0", + "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_edgev117~policy~microsoft_edge_showhistorythumbnails_1", + "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_edgev117~policy~microsoft_edge_splitscreenenabled", - "displayName": "Enable split screen feature in Microsoft Edge", + "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_edgev117~policy~microsoft_edge_splitscreenenabled_0", + "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_edgev117~policy~microsoft_edge_splitscreenenabled_1", + "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_edgev117~policy~microsoft_edge_uploadfromphoneenabled", - "displayName": "Enable upload files from phone in Microsoft Edge desktop", + "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_edgev117~policy~microsoft_edge_uploadfromphoneenabled_0", + "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_edgev117~policy~microsoft_edge_uploadfromphoneenabled_1", + "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_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled", - "displayName": "Enable Gamer Mode", + "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_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_0", + "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_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_1", + "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_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled", - "displayName": "Control the behavior for the cancel dialog produced by the beforeunload event", + "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_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_1", - "displayName": "Enabled", + "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_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.", + "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_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_0", + "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_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_1", + "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_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled", - "displayName": "Controls whether unload event handlers can be disabled.", + "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_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_1", - "displayName": "Enabled", + "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_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled", - "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge", + "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_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_0", + "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_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_1", + "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_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", + "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_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_1", - "displayName": "Enabled", + "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_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled", - "displayName": "Control the new behavior for event dispatching on disabled form controls", + "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_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_0", + "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_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_1", + "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_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled", - "displayName": "Data URL support for SVGUseElement", + "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_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_1", - "displayName": "Enabled", + "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_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled", - "displayName": "Enable compression dictionary transport support", + "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_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_0", + "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_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_1", + "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_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", + "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_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_1", - "displayName": "Enabled", + "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_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings", - "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains", + "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_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_0", + "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_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_1", + "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_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", + "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_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_0", - "displayName": "Disabled", + "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_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_1", - "displayName": "Enabled", + "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_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled", - "displayName": "Hide the company logo on the Microsoft Edge new tab page", + "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_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_0", + "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_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_1", + "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_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", + "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_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_0", - "displayName": "Disabled", + "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_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_1", - "displayName": "Enabled", + "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_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile", - "displayName": "Switch intranet sites to a work profile", + "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_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_0", + "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_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_1", + "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_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile", - "displayName": "Switch sites on the IE mode site list to a work profile", + "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_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_0", - "displayName": "Disabled", + "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_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_1", - "displayName": "Enabled", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy", - "displayName": "Microsoft Edge management service policy overrides platform policy.", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_0", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_1", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy", - "displayName": "Allow Microsoft Edge management service user policies to override policies set through an enrollment token.", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_0", - "displayName": "Disabled", + "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_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_1", - "displayName": "Enabled", + "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_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled", - "displayName": "Edge 3P SERP Telemetry Enabled", + "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_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_0", + "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_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_1", + "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_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended", - "displayName": "Edge 3P SERP Telemetry Enabled", + "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_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_0", + "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_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_1", + "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_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", + "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_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_0", + "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_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_1", + "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_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended", - "displayName": "Configure the automatic profile switching site list", + "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_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_0", + "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_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_1", + "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_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_automaticprofileswitchingsitelist", - "displayName": "Configure the automatic profile switching site list (Device)", + "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_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended", - "displayName": "Configure auto discard sleeping tabs", + "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_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_0", + "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_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_1", + "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_edgev120~policy~microsoft_edge_webappsettings", - "displayName": "Web App management settings", + "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_edgev120~policy~microsoft_edge_webappsettings_0", + "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_edgev120~policy~microsoft_edge_webappsettings_1", + "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_edgev120~policy~microsoft_edge_webappsettings_webappsettings", - "displayName": "Web App management settings (Device)", + "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_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist", - "displayName": "Configure the automatic profile switching site list", + "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_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_0", + "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_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_1", + "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_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_automaticprofileswitchingsitelist", - "displayName": "Configure the automatic profile switching site list (Device)", + "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_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled", - "displayName": "Configure auto discard sleeping tabs", + "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_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_0", + "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_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_1", + "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_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly", - "displayName": "Force Windows executable Native Messaging hosts to launch directly", + "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_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_0", + "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_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_1", + "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_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled", - "displayName": "Enable post-quantum key agreement for TLS", + "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_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_0", + "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_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_1", + "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_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery", - "displayName": "Disable DIAL protocol for cast device discovery", + "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_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_0", + "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_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_1", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled", - "displayName": "Enable Related Website Sets", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_0", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_1", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides", - "displayName": "Override Related Website Sets.", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_0", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_1", + "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_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_relatedwebsitesetsoverrides", - "displayName": "Override Related Website Sets. (Device)", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride", - "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_0", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_1", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains", - "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_0", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_1", + "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_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_typosquattingallowlistdomainsdesc", - "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings (Device)", + "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_edgev122~policy~microsoft_edge_aigenthemesenabled", - "displayName": "Enables DALL-E themes generation", + "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_edgev122~policy~microsoft_edge_aigenthemesenabled_0", + "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_edgev122~policy~microsoft_edge_aigenthemesenabled_1", + "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_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass", - "displayName": "Allow users to bypass Enhanced Security Mode", + "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_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_0", + "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_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_1", + "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_edgev122~policy~microsoft_edge_superdragdropenabled", - "displayName": "Super Drag Drop Enabled", + "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_edgev122~policy~microsoft_edge_superdragdropenabled_0", + "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_edgev122~policy~microsoft_edge_superdragdropenabled_1", + "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_edgev122~policy~microsoft_edge_urldiagnosticdataenabled", - "displayName": "URL reporting in Edge diagnostic data enabled", + "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_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_0", + "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_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_1", + "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_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled", - "displayName": "Check RSA key usage for server certificates issued by local trust anchors", + "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_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_0", + "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_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_1", + "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_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins", - "displayName": "Allow screen capture without prior user gesture", + "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_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_0", + "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_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_1", + "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_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_screencapturewithoutgestureallowedfororiginsdesc", - "displayName": "Allow screen capture without prior user gesture (Device)", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting", - "displayName": "Default Window Management permission setting", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_0", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_1", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting", - "displayName": "Default Window Management permission setting (Device)", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_2", - "displayName": "Denies the Window Management permission on all sites by default", + "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_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_3", - "displayName": "Ask every time a site wants obtain the Window Management permission", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls", - "displayName": "Allow Window Management permission on specified sites", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_0", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_1", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_windowmanagementallowedforurlsdesc", - "displayName": "Allow Window Management permission on specified sites (Device)", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls", - "displayName": "Block Window Management permission on specified sites", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_0", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_1", + "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_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_windowmanagementblockedforurlsdesc", - "displayName": "Block Window Management permission on specified sites (Device)", + "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_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist", - "displayName": "Blocklist for extension install types", + "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_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_0", + "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_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_1", + "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_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_extensioninstalltypeblocklistdesc", - "displayName": "Blocklist for extension install types (Device)", + "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_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability", - "displayName": "Control Manifest v2 extension availability", + "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_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_0", + "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_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_1", + "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_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability", - "displayName": "Control Manifest v2 extension availability (Device)", + "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_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", + "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_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_3", - "displayName": "Manifest v2 is enabled for forced extensions only", + "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_edgev124~policy~microsoft_edge_copilotcdppagecontext", - "displayName": "Control Copilot with Commerical Data Protection access to browser context for Microsoft Entra ID profiles", + "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_edgev124~policy~microsoft_edge_copilotcdppagecontext_0", + "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_edgev124~policy~microsoft_edge_copilotcdppagecontext_1", + "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_edgev124~policy~microsoft_edge_copilotpagecontext", - "displayName": "Control Copilot access to browser context for Microsoft Entra ID profiles", + "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_edgev124~policy~microsoft_edge_copilotpagecontext_0", + "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_edgev124~policy~microsoft_edge_copilotpagecontext_1", + "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_edgev124~policy~microsoft_edge_mutationeventsenabled", - "displayName": "Enable deprecated/removed Mutation Events", + "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_edgev124~policy~microsoft_edge_mutationeventsenabled_0", + "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_edgev124~policy~microsoft_edge_mutationeventsenabled_1", + "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_edgev125~policy~microsoft_edge_imageeditorserviceenabled", - "displayName": "Enable the Designer for Image Editor feature", + "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_edgev125~policy~microsoft_edge_imageeditorserviceenabled_0", + "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_edgev125~policy~microsoft_edge_imageeditorserviceenabled_1", + "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_edgev125~policy~microsoft_edge_qrcodegeneratorenabled", - "displayName": "Enable QR Code Generator", + "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_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_0", + "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_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_1", + "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_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled", - "displayName": "Enable zstd content encoding support", + "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_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_0", + "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_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_1", + "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_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive", - "displayName": "Keep the active Microsoft Edge window with an Internet Explorer mode tab always in the foreground.", + "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_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_0", + "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_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_1", + "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_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled", - "displayName": "Enable proactive authentication", + "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_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_0", + "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_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_1", + "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_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled", - "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled", + "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_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_0", + "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_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_1", + "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_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist", - "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar", + "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_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_0", + "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_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_1", + "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_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", + "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_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_0", + "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_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_1", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings", - "displayName": "Dynamic Code Settings", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings_0", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings_1", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings", - "displayName": "Dynamic Code Settings (Device)", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_0", - "displayName": "Default dynamic code settings", + "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_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_1", - "displayName": "Prevent the browser process from creating dynamic code", + "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_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled", - "displayName": "Enable open in sidebar", + "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_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_0", + "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_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_1", + "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_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled", - "displayName": "Enable sidebar customize", + "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_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_0", - "displayName": "Disabled", + "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_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_1", - "displayName": "Enabled", + "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_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled", - "displayName": "Enable keyboard focusable scrollers", + "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_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_0", + "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_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_1", + "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_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended", - "displayName": "Enable insecure download warnings", + "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_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_0", + "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_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_1", + "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_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled", - "displayName": "Enable insecure download warnings", + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled", + "displayName": "Enable printing", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_0", + "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_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_1", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings", - "displayName": "Control the availability of developer mode on extensions page", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_0", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_1", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings", - "displayName": "Control the availability of developer mode on extensions page (Device)", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_0", - "displayName": "Allow the usage of developer mode on extensions page", + "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_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_1", - "displayName": "Do not allow the usage of developer mode on extensions page", + "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_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls", - "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.", + "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_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_0", + "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_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_1", + "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_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_extensionextendedbackgroundlifetimeforportconnectionstourlsdesc", - "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions. (Device)", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", - "displayName": "Action to take on Microsoft Edge startup", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", - "displayName": "Action to take on Microsoft Edge startup (Device)", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", - "displayName": "Open a new tab", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", - "displayName": "Restore the last session", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", - "displayName": "Open a list of URLs", + "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_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_6", - "displayName": "Open a list of URLs and restore the last session", + "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_edgev77.3~policy~microsoft_edge~startup_restoreonstartup", - "displayName": "Action to take on Microsoft Edge startup", + "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_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_0", + "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_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_1", + "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_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", - "displayName": "Action to take on Microsoft Edge startup (Device)", + "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_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", + "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_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_6", - "displayName": "Open a list of URLs and restore the last session", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites", - "displayName": "Ads setting for sites with intrusive ads", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_0", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_1", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites", - "displayName": "Ads setting for sites with intrusive ads (Device)", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_1", - "displayName": "Allow ads on all sites", + "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_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2", - "displayName": "Block ads on sites with intrusive ads. (Default value)", + "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_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload", - "displayName": "Allows a page to show popups during its unloading", + "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_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_0", + "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_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_1", + "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_edgev78diff~policy~microsoft_edge_allowtrackingforurls", - "displayName": "Configure tracking prevention exceptions for specific sites", + "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_edgev78diff~policy~microsoft_edge_allowtrackingforurls_0", + "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_edgev78diff~policy~microsoft_edge_allowtrackingforurls_1", + "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_edgev78diff~policy~microsoft_edge_allowtrackingforurls_allowtrackingforurlsdesc", - "displayName": "Configure tracking prevention exceptions for specific sites (Device)", + "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_edgev78diff~policy~microsoft_edge_autoplayallowed", - "displayName": "Allow media autoplay for websites", + "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_edgev78diff~policy~microsoft_edge_autoplayallowed_0", + "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_edgev78diff~policy~microsoft_edge_autoplayallowed_1", + "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_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit", - "displayName": "Clear browsing data when Microsoft Edge closes", + "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_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_0", + "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_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_1", + "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_edgev78diff~policy~microsoft_edge_clickonceenabled", - "displayName": "Allow users to open files using the ClickOnce protocol", + "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_edgev78diff~policy~microsoft_edge_clickonceenabled_0", + "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_edgev78diff~policy~microsoft_edge_clickonceenabled_1", + "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_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled", - "displayName": "Enable security warnings for command-line flags", + "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_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_0", + "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_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_1", + "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_edgev78diff~policy~microsoft_edge_directinvokeenabled", - "displayName": "Allow users to open files using the DirectInvoke protocol", + "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_edgev78diff~policy~microsoft_edge_directinvokeenabled_0", + "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_edgev78diff~policy~microsoft_edge_directinvokeenabled_1", + "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_edgev78diff~policy~microsoft_edge_edgecollectionsenabled", - "displayName": "Enable the Collections feature", + "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 Microsoft Edge startup", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_0", + "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_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_1", + "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_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled", - "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", + "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_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_0", - "displayName": "Disabled", + "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_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_1", - "displayName": "Enabled", + "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_edgev78diff~policy~microsoft_edge_forcenetworkinprocess", - "displayName": "Force networking code to run in the browser process", + "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_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_0", + "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_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_1", + "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_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar", - "displayName": "Force direct intranet site navigation instead of searching on single word entries in the Address Bar", + "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_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_0", + "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_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_1", + "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_edgev78diff~policy~microsoft_edge_importbrowsersettings", - "displayName": "Allow importing of browser settings", + "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_edgev78diff~policy~microsoft_edge_importbrowsersettings_0", + "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_edgev78diff~policy~microsoft_edge_importbrowsersettings_1", + "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_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist", - "displayName": "Configure the Enterprise Mode Site List", + "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_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_0", - "displayName": "Disabled", + "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_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_1", - "displayName": "Enabled", + "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_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", + "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_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_0", + "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_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_1", + "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_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended", - "displayName": "Clear browsing data when Microsoft Edge closes", + "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_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_0", - "displayName": "Disabled", + "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_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_1", - "displayName": "Enabled", + "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_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended", - "displayName": "Allow importing of browser settings", + "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_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_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", + "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_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled", - "displayName": "Enable renderer code integrity", + "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_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled", - "displayName": "Enable Signed HTTP Exchange (SXG) support", + "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_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist", - "displayName": "Force disable spellcheck languages", + "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_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_0", + "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_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_1", + "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_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", + "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_edgev78diff~policy~microsoft_edge_trackingprevention_0", - "displayName": "Disabled", + "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_edgev78diff~policy~microsoft_edge_trackingprevention_1", - "displayName": "Enabled", + "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_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention", - "displayName": "Block tracking of users' web-browsing activity (Device)", + "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_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_0", - "displayName": "Off (no tracking prevention)", + "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_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)", + "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_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled", - "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources", + "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_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_0", + "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_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_1", + "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_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal", - "displayName": "Allow pages to send synchronous XHR requests during page dismissal", + "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_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_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", + "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_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink", - "displayName": "Specify custom help link", + "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_edgev79diff~policy~microsoft_edge_customhelplink_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_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", + "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_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_0", + "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_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_1", + "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_edgev79diff~policy~microsoft_edge_hstspolicybypasslist", - "displayName": "Configure the list of names that will bypass the HSTS policy check", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended", + "displayName": "Allow users to configure Site safety services (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_0", + "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_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_1", + "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_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", + "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_edgev79diff~policy~microsoft_edge_importopentabs_0", + "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_edgev79diff~policy~microsoft_edge_importopentabs_1", + "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_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended", - "displayName": "Allow importing of open tabs", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled", + "displayName": "Allow users to configure Site safety services (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_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", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_0", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_1", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_newtabpagemanagedquicklinks", - "displayName": "Set new tab page quick links (Device)", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended", - "displayName": "Configure the Microsoft Edge new tab page experience", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_0", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_1", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype", - "displayName": "New tab page experience (Device)", + "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_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_0", - "displayName": "Microsoft News feed experience", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled", - "displayName": "Allow freezing of background tabs", + "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_edgev79diff~policy~microsoft_edge_tabfreezingenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_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)", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_0", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_1", + "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_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", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_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", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_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)", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_0", - "displayName": "Microsoft News feed experience", + "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_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_1", - "displayName": "Office 365 feed experience", + "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_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled", - "displayName": "Suggest similar pages when a webpage can’t be found", + "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_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled", - "displayName": "DNS interception checks enabled", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed", + "displayName": "Live captions allowed", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_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", + "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_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_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", + "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_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_0", + "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_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_1", + "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_edgev80diff~policy~microsoft_edge_personalizationreportingenabled", - "displayName": "Allow personalization of ads, search and news by sending browsing history to Microsoft", + "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_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed", - "displayName": "Allow Pin to taskbar wizard", + "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_edgev80diff~policy~microsoft_edge_pinningwizardallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_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", + "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_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_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", + "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_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_0", - "displayName": "Disabled", + "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_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_1", - "displayName": "Enabled", + "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_edgev80diff~policy~microsoft_edge_totalmemorylimitmb", - "displayName": "Set limit on megabytes of memory a single Microsoft Edge instance can use.", + "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_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_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", + "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_edgev80diff~policy~microsoft_edge_webappinstallforcelist_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_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)", + "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_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_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", + "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_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_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", + "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_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_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)", + "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_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_2", - "displayName": "Do not allow any site to load blockable mixed content", + "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_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_3", - "displayName": "Allow users to add exceptions to allow blockable mixed content", + "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_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls", - "displayName": "Allow insecure content on specified sites", + "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_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_0", + "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_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_1", + "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_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", + "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_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_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", + "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_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_0", + "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_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_1", + "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_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", - "displayName": "Enable default legacy SameSite cookie behavior setting (Device)", + "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_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", - "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_1", + "displayName": "Enabled", "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", + "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_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_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", + "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_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_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", + "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_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_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", + "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_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_0", + "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_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_1", + "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_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled", - "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles (Device)", + "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_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", + "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_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_2", - "displayName": "Enable ambient authentication in guest and regular sessions", + "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_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_3", - "displayName": "Enable ambient authentication in regular, InPrivate and guest sessions", + "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_edgev81diff~policy~microsoft_edge_audiosandboxenabled", - "displayName": "Allow the audio sandbox to run", + "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_edgev81diff~policy~microsoft_edge_audiosandboxenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_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", + "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_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_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)", + "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_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_0", + "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_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_1", - "displayName": "Sign in and make domain account non-removable", + "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_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy", - "displayName": "Use a default referrer policy of no-referrer-when-downgrade. (deprecated)", + "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_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_0", + "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_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_1", + "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_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled", - "displayName": "Enable globally scoped HTTP auth cache", + "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_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_0", + "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_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_1", + "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_edgev81diff~policy~microsoft_edge_importcookies", - "displayName": "Allow importing of Cookies", + "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_edgev81diff~policy~microsoft_edge_importcookies_0", + "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_edgev81diff~policy~microsoft_edge_importcookies_1", + "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_edgev81diff~policy~microsoft_edge_importextensions", - "displayName": "Allow importing of extensions", + "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_edgev81diff~policy~microsoft_edge_importextensions_0", + "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_edgev81diff~policy~microsoft_edge_importextensions_1", + "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_edgev81diff~policy~microsoft_edge_importshortcuts", - "displayName": "Allow importing of shortcuts", + "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_edgev81diff~policy~microsoft_edge_importshortcuts_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_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", + "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_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_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)", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended", - "displayName": "Allow importing of Cookies", + "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_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_0", + "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_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_1", + "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_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended", - "displayName": "Allow importing of extensions", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled", + "displayName": "Web Select Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended", - "displayName": "Allow importing of shortcuts", + "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_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled", - "displayName": "Enable stricter treatment for mixed content", + "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_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_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.", + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled", + "displayName": "Enable Workspaces", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_0", + "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_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_1", + "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_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\"", + "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_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_0", + "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_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_1", + "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_edgev83diff~policy~microsoft_edge_allowsurfgame", - "displayName": "Allow surf game", + "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_edgev83diff~policy~microsoft_edge_allowsurfgame_0", + "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_edgev83diff~policy~microsoft_edge_allowsurfgame_1", + "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_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls", - "displayName": "Configure the list of sites for which Microsoft Edge will attempt to establish a Token Binding with.", + "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_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_0", + "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_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_1", + "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_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", + "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_edgev83diff~policy~microsoft_edge_bingadssuppression_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_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", + "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_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_0", - "displayName": "Disabled", + "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_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_1", - "displayName": "Enabled", + "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_edgev83diff~policy~microsoft_edge_configureshare", - "displayName": "Configure the Share experience", + "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_edgev83diff~policy~microsoft_edge_configureshare_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare", - "displayName": "Configure the Share experience (Device)", + "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_edgev83diff~policy~microsoft_edge_configureshare_configureshare_0", - "displayName": "Allow using the Share experience", + "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_edgev83diff~policy~microsoft_edge_configureshare_configureshare_1", - "displayName": "Don't allow using the Share experience", + "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_edgev83diff~policy~microsoft_edge_deletedataonmigration", - "displayName": "Delete old browser data on migration", + "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_edgev83diff~policy~microsoft_edge_deletedataonmigration_0", - "displayName": "Disabled", + "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_edgev83diff~policy~microsoft_edge_deletedataonmigration_1", - "displayName": "Enabled", + "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_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode", - "displayName": "Control the mode of DNS-over-HTTPS", + "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_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_0", + "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_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_1", + "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_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode", - "displayName": "Control the mode of DNS-over-HTTPS (Device)", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_secure", - "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates", - "displayName": "Specify URI template of desired DNS-over-HTTPS resolver", + "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_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_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)", + "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_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled", - "displayName": "Allow users to configure Family safety", + "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_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled", - "displayName": "Allow suggestions from local providers", + "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_edgev83diff~policy~microsoft_edge_localprovidersenabled_0", - "displayName": "Disabled", + "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_edgev83diff~policy~microsoft_edge_localprovidersenabled_1", - "displayName": "Enabled", + "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_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended", - "displayName": "Clear cached images and files when Microsoft Edge closes", + "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 (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_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", + "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_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_0", + "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_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_1", + "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_edgev83diff~policy~microsoft_edge_screencaptureallowed", - "displayName": "Allow or deny screen capture", + "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_edgev83diff~policy~microsoft_edge_screencaptureallowed_0", + "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_edgev83diff~policy~microsoft_edge_screencaptureallowed_1", + "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_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled", - "displayName": "Enable scrolling to text specified in URL fragments", + "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_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_0", + "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_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_1", + "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_edgev83diff~policy~microsoft_edge_synctypeslistdisabled", - "displayName": "Configure the list of types that are excluded from synchronization", + "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_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_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", + "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_edgev84diff~policy~microsoft_edge_appcacheforceenabled_0", + "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_edgev84diff~policy~microsoft_edge_appcacheforceenabled_1", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload", - "displayName": "Require that the Enterprise Mode Site List is available before tab navigation", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_0", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_1", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload", - "displayName": "Require that the Enterprise Mode Site List is available before tab navigation (Device)", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_0", - "displayName": "None", + "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_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_1", - "displayName": "All eligible navigations", + "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_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection", - "displayName": "Configure enhanced hang detection for Internet Explorer mode", + "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_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_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)", + "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_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_0", - "displayName": "Enhanced hang detection disabled", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_1", - "displayName": "Enhanced hang detection enabled", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled", - "displayName": "Enable Hiding of Native Windows", + "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_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_0", - "displayName": "Disabled", + "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_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_1", - "displayName": "Enabled", + "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_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout", - "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List", + "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_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_0", + "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_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_1", + "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_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_navigationdelayforinitialsitelistdownloadtimeout", - "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List: (Device)", + "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_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended", - "displayName": "Manage Search Engines", + "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_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_1", + "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_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_managedsearchengines", - "displayName": "Manage Search Engines (Device)", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended", - "displayName": "Enable the default search provider", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_1", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended", - "displayName": "Default search provider encodings", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_0", - "displayName": "Disabled", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_1", - "displayName": "Enabled", + "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_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", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_1", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_defaultsearchproviderimageurl", - "displayName": "Specifies the search-by-image feature for the default search provider (Device)", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended", - "displayName": "Parameters for an image URL that uses POST", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_1", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_1", + "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_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", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_0", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_1", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_defaultsearchprovidername", - "displayName": "Default search provider name (Device)", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended", - "displayName": "Default search provider search URL", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_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", + "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_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_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)", + "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_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_0", + "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_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_1", + "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_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy", - "displayName": "Application Guard Container Proxy", + "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_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_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", + "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_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", + "displayName": "Enable CryptoWallet feature (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled", + "displayName": "Mouse Gesture Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_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", + "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_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_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)", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview", + "displayName": "Restore PDF view", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_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", + "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_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_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", + "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_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled", + "displayName": "Enable Discover access to page contents for AAD profiles (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_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)", + "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 (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_bing", - "displayName": "Search box (Recommended)", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_redirect", - "displayName": "Address bar", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_1", + "displayName": "Enabled", "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", + "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_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled", + "displayName": "Standalone Sidebar Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation", - "displayName": "Set the roaming profile directory", + "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_edgev85diff~policy~microsoft_edge_roamingprofilelocation_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_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", + "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_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_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", + "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 (deprecated)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_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", + "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_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_0", + "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_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_1", + "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_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox", - "displayName": "New tab page search box experience (Device)", + "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_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_bing", - "displayName": "Search box (Recommended)", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_redirect", - "displayName": "Address bar", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_1", + "displayName": "Enabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled", + "displayName": "Wallet Donation Enabled", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_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", + "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_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_0", + "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_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_1", + "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_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist", - "displayName": "Block access to a specified list of services and export targets in Collections", + "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_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_0", + "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_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_1", + "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_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_collectionsservicesandexportsblocklistdesc", - "displayName": "Block access to a specified list of services and export targets in Collections (Device)", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting", - "displayName": "Default sensors setting", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting_0", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting_1", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting", - "displayName": "Default sensors setting (Device)", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_1", - "displayName": "Allow sites to access sensors", + "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_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_2", - "displayName": "Do not allow any site to access sensors", + "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_edgev86~policy~microsoft_edge_defaultserialguardsetting", - "displayName": "Control use of the Serial API", + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_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)", + "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_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_2", - "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "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_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_3", - "displayName": "Allow sites to ask for user permission to access a serial port", + "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_edgev86~policy~microsoft_edge_diagnosticdata", - "displayName": "Send required and optional diagnostic data about browser usage", + "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_edgev86~policy~microsoft_edge_diagnosticdata_0", - "displayName": "Disabled", + "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_edgev86~policy~microsoft_edge_diagnosticdata_1", - "displayName": "Enabled", + "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_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata", - "displayName": "Send required and optional diagnostic data about browser usage (Device)", + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins", + "displayName": "Disable third-party storage partitioning for specific top-level origins", "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", + "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_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_2", - "displayName": "Optional data", + "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_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed", - "displayName": "Allow access to the Enterprise Mode Site List Manager tool", + "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_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_0", + "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_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_1", + "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_edgev86~policy~microsoft_edge_forcesync", - "displayName": "Force synchronization of browser data and do not show the sync consent prompt", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications", + "displayName": "Allows system notifications", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled", - "displayName": "Enable warnings for insecure forms", + "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_edgev86~policy~microsoft_edge_insecureformswarningsenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed", - "displayName": "Allow Internet Explorer mode testing", + "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_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit", - "displayName": "Save cookies when Microsoft Edge closes", + "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_edgev86~policy~microsoft_edge_savecookiesonexit_0", + "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_edgev86~policy~microsoft_edge_savecookiesonexit_1", + "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_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", + "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_edgev86~policy~microsoft_edge_sensorsallowedforurls_0", + "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_edgev86~policy~microsoft_edge_sensorsallowedforurls_1", + "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_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", + "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_edgev86~policy~microsoft_edge_sensorsblockedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_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", + "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_edgev86~policy~microsoft_edge_serialaskforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_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", + "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_edgev86~policy~microsoft_edge_serialblockedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_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)", + "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_edgev86~policy~microsoft_edge_useragentclienthintsenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled", + "displayName": "Enable upload files from mobile in Microsoft Edge desktop", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_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", + "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_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_0", + "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_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_1", + "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_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting", - "displayName": "Control use of the File System API for reading (Device)", + "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_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_1", + "displayName": "Enabled", "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", + "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_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_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)", + "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_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_2", - "displayName": "Don't allow any site to request write access to files and directories", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_1", + "displayName": "Enabled", "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", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_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", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_0", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_1", + "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_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", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_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", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_0", + "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_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_1", + "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_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", + "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_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_0", + "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_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_1", + "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_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes", - "displayName": "Configure the background types allowed for the new tab page layout", + "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_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_0", + "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_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_1", + "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_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes", - "displayName": "New tab page experience (Device)", + "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_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", + "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_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_3", - "displayName": "Disable all background image types", + "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_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", + "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_edgev87~policy~microsoft_edge_configurefriendlyurlformat_0", + "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_edgev87~policy~microsoft_edge_configurefriendlyurlformat_1", + "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_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)", + "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_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.", + "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_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_4", - "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "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_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled", - "displayName": "Shopping in Microsoft Edge Enabled", + "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 Microsoft Entra on the profile-related UI of a work profile", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_0", + "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_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_1", + "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_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled", - "displayName": "Hide the one-time redirection dialog and the banner on Microsoft Edge", + "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_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_0", + "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_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_1", + "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_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended", - "displayName": "Shopping in Microsoft Edge Enabled", + "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_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_0", + "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_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_1", + "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_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended", - "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge", + "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_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_0", + "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_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_1", + "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_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode", - "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (Device)", + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy", + "displayName": "Allow cloud-based Microsoft Edge management service user policies to override local user policies.", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_0", - "displayName": "Disable", + "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_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_1", - "displayName": "Redirect sites based on the incompatible sites sitelist", + "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_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended", - "displayName": "Enable Password reveal button", + "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_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_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", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_0", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_1", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode", - "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_0", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_1", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode", - "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (Device)", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_0", - "displayName": "Disable", + "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_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_1", - "displayName": "Redirect sites based on the incompatible sites sitelist", + "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_edgev87~policy~microsoft_edge_speechrecognitionenabled", - "displayName": "Configure Speech Recognition", + "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_edgev87~policy~microsoft_edge_speechrecognitionenabled_0", + "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_edgev87~policy~microsoft_edge_speechrecognitionenabled_1", + "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_edgev87~policy~microsoft_edge_webcaptureenabled", - "displayName": "Enable web capture feature in Microsoft Edge", + "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_edgev87~policy~microsoft_edge_webcaptureenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_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", + "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_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_0", + "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_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_1", + "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_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit", - "displayName": "Delete files downloaded as part of kiosk session when Microsoft Edge closes", + "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_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_0", + "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_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_1", + "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_edgev87~policy~microsoft_edge~printing_printingpapersizedefault", - "displayName": "Default printing page size", + "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_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_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", + "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_edgev88.0.705.23~policy~microsoft_edge_targetblankimpliesnoopener_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge_targetblankimpliesnoopener_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_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", + "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_edgev88.0.705.23~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_0", + "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_edgev88.0.705.23~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_1", + "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_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended", - "displayName": "Set the background tab inactivity timeout for sleeping tabs", + "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_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_0", + "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_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_1", + "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_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", - "displayName": "Set the background tab inactivity timeout for sleeping tabs (Device)", + "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_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", + "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_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", - "displayName": "12 hours of inactivity", + "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_edgev88.1~policy~microsoft_edge_sleepingtabstimeout", - "displayName": "Set the background tab inactivity timeout for sleeping tabs", + "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_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_0", + "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_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_1", + "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_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout", - "displayName": "Set the background tab inactivity timeout for sleeping tabs (Device)", + "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_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", + "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_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_43200", - "displayName": "12 hours of inactivity", + "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_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed", - "displayName": "Allow launching of local files in Internet Explorer mode", + "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_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_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", + "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_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_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", + "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_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior", - "displayName": "Intranet Redirection Behavior", + "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_edgev88~policy~microsoft_edge_intranetredirectbehavior_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior", - "displayName": "Intranet Redirection Behavior (Device)", + "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_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_0", - "displayName": "Use default browser behavior.", + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", "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.", + "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_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_2", - "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_0", + "displayName": "Disabled", "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.", + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended", - "displayName": "Show Microsoft Rewards experiences", + "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_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_0", + "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_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_1", + "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_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended", - "displayName": "Enable startup boost", + "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_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_0", - "displayName": "Disabled", + "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_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_1", - "displayName": "Enabled", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended", - "displayName": "Block Sleeping Tabs on specific sites", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_0", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_1", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_sleepingtabsblockedforurlsdesc", - "displayName": "Block Sleeping Tabs on specific sites (Device)", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended", - "displayName": "Configure Sleeping Tabs", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_0", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_1", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended", - "displayName": "Set the background tab inactivity timeout for Sleeping Tabs", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_0", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_1", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", - "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (Device)", + "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_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", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_3600", - "displayName": "1 hour of inactivity", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_7200", - "displayName": "2 hours of inactivity", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_10800", - "displayName": "3 hours of inactivity", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_21600", - "displayName": "6 hours of inactivity", + "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_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", - "displayName": "12 hours of inactivity", + "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_edgev88~policy~microsoft_edge_showmicrosoftrewards", - "displayName": "Show Microsoft Rewards experiences", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext", + "displayName": "Control Copilot with Commercial Data Protection access to page context for Microsoft Entra ID profiles (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext", + "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_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)", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events (deprecated)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed", - "displayName": "Enable the Web widget", + "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_edgev88~policy~microsoft_edge_webwidgetallowed_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_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", + "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_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_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", + "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_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_0", + "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_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_1", + "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_edgev88~policy~microsoft_edge~performance_startupboostenabled", - "displayName": "Enable startup boost", + "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_edgev88~policy~microsoft_edge~performance_startupboostenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_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", + "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_edgev88~policy~microsoft_edge~printing_printertypedenylist_0", + "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_edgev88~policy~microsoft_edge~printing_printertypedenylist_1", + "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_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", + "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 (obsolete)", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_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)", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled", - "displayName": "Configure Sleeping Tabs", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_0", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_1", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout", - "displayName": "Set the background tab inactivity timeout for Sleeping Tabs", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings", + "displayName": "Dynamic Code Settings", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_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)", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_300", - "displayName": "5 minutes of inactivity", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_900", - "displayName": "15 minutes of inactivity", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_1800", - "displayName": "30 minutes of inactivity", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_3600", - "displayName": "1 hour of inactivity", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_7200", - "displayName": "2 hours of inactivity", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_10800", - "displayName": "3 hours of inactivity", + "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_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_21600", - "displayName": "6 hours of inactivity", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_43200", - "displayName": "12 hours of inactivity", + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime", - "displayName": "Browsing Data Lifetime Settings", + "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_edgev89~policy~microsoft_edge_browsingdatalifetime_0", + "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_edgev89~policy~microsoft_edge_browsingdatalifetime_1", + "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_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", + "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_edgev89~policy~microsoft_edge_definepreferredlanguages_0", + "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_edgev89~policy~microsoft_edge_definepreferredlanguages_1", + "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_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", + "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_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_0", + "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_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_1", + "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_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", + "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_edgev89~policy~microsoft_edge_showrecommendationsenabled_0", - "displayName": "Disabled", + "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_edgev89~policy~microsoft_edge_showrecommendationsenabled_1", - "displayName": "Enabled", + "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_edgev89~policy~microsoft_edge_smartactionsblocklist", - "displayName": "Block smart actions for a list of services", + "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_edgev89~policy~microsoft_edge_smartactionsblocklist_0", + "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_edgev89~policy~microsoft_edge_smartactionsblocklist_1", + "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_edgev89~policy~microsoft_edge_smartactionsblocklist_smartactionsblocklistdesc", - "displayName": "Block smart actions for a list of services (Device)", + "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_edgev89~policy~microsoft_edge~manageability_mamenabled", - "displayName": "Mobile App Management Enabled", + "id": "device_vendor_msft_policy_config_microsoft_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled", + "displayName": "Enable Printing LPAC Sandbox", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes", - "displayName": "Restrict background graphics printing mode", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext", + "displayName": "Control Copilot access to Microsoft Edge page content for Entra account user profiles when using Copilot in the Microsoft Edge sidepane", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext_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)", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled", + "displayName": "Extensions Performance Detector enabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_disabled", - "displayName": "Allow printing only without background graphics", + "id": "device_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault", - "displayName": "Default background graphics printing mode", + "id": "device_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_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)", + "id": "device_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_edgesidebarappurlhostallowlistdesc", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled", + "displayName": "Machine learning powered autofill suggestions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_enabled", - "displayName": "Enable background graphics printing mode by default", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled_0", + "displayName": "Disabled", "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", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown", - "displayName": "Fetch keepalive duration on shutdown", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed", + "displayName": "Live translation allowed", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled", + "displayName": "Personalize my top sites in Customize Sidebar enabled by default", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended", + "displayName": "Machine learning powered autofill suggestions", "options": [ { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_0", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended_0", "displayName": "Disabled", "description": null }, { - "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_1", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended_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", + "id": "device_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_selectparserrelaxationenabled", + "displayName": "Controls whether the new HTML parser behavior for the element is enabled (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_selectparserrelaxationenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_selectparserrelaxationenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault", - "displayName": "Default printing page size (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled", + "displayName": "Control the new behavior for event dispatching on disabled form controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_sendmouseeventsdisabledformcontrolsenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled", + "displayName": "Control Javascript setTimeout() function minimum timeout. (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_settimeoutwithout1msclampenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode", - "displayName": "Print PostScript Mode (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings", + "displayName": "Settings for Tab Organizer (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode", - "displayName": "Print PostScript Mode (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings", + "displayName": "Settings for Tab Organizer (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_0", - "displayName": "Default", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_0", + "displayName": "Allow Tab Organizer and improve AI models.", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_1", - "displayName": "Type42", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_1", + "displayName": "Allow Tab Organizer without improving AI models.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_taborganizersettings_taborganizersettings_2", + "displayName": "Do not allow Tab Organizer.", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter", - "displayName": "Use System Default Printer as Default (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_throttlenonvisiblecrossoriginiframesallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode", - "displayName": "Print Rasterization Mode (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings", + "displayName": "Managed toolbar avatar label setting (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode", - "displayName": "Print Rasterization Mode (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings", + "displayName": "Managed toolbar avatar label setting (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_0", - "displayName": "Full", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings_0", + "displayName": "Always display management label", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_1", - "displayName": "Fast", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_toolbaravatarlabelsettings_toolbaravatarlabelsettings_1", + "displayName": "Display management labels for 30s", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi", - "displayName": "Print Rasterize PDF DPI (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled", + "displayName": "Control the nesting threshold before which Javascript setTimeout() function start being clamped (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_unthrottlednestedtimeoutenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled", + "displayName": "Control the URL parameter filter feature (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_urlparamfilterenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed", + "displayName": "Allow Pepper to use a new decoder for hardware accelerated video decoding. (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_usemojovideodecoderforpepperallowed_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled", + "displayName": "Control the User-Agent Client Hints GREASE Update feature. (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_useragentclienthintsgreaseupdateenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess", + "displayName": "Force WebSQL to be enabled. (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlaccess_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled", + "displayName": "Force WebSQL in non-secure contexts to be enabled. (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_websqlnonsecurecontextenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled", + "displayName": "Enable zstd content-encoding support (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~removedpolicies_zstdcontentencodingenabled_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled", + "displayName": "Allow download deep scanning for Safe Browsing-enabled users (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingdeepscanningenabled_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_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed", + "displayName": "Allow Safe Browsing Proxied Real Time Checks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingproxiedrealtimechecksallowed_1", + "displayName": "Enabled", + "description": 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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled", + "displayName": "Allow Safe Browsing Surveys (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~safebrowsing_safebrowsingsurveysenabled_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_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled", + "displayName": "Bind Google credentials to a device (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_boundsessioncredentialsenabled_1", + "displayName": "Enabled", + "description": null + } + ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist", - "displayName": "Configure the required domain names for remote access hosts (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist", + "displayName": "Enterprise profile separation secondary domain allowlist (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~signin_profileseparationdomainexceptionlist_profileseparationdomainexceptionlistdesc", + "displayName": "Enterprise profile separation secondary domain allowlist (User)", "options": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal", - "displayName": "Enable firewall traversal from remote access host (User)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl", + "displayName": "WebRTC per URL IP Handling (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_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)", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtciphandlingurl_webrtciphandlingurl", + "displayName": "WebRTC per URL IP Handling (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement", + "displayName": "Enable post-quantum key agreement for WebRTC (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_0", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_1", + "id": "user_vendor_msft_policy_config_chromeintunev141~policy~googlechrome~webrtc_webrtcpostquantumkeyagreement_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_connectivity_disablecrossdeviceresume", + "displayName": "Disable Cross Device Resume (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_policy_config_connectivity_disablecrossdeviceresume_0", + "displayName": "CrossDeviceResume is Enabled.", + "description": "CrossDeviceResume is Enabled." + }, + { + "id": "user_vendor_msft_policy_config_connectivity_disablecrossdeviceresume_1", + "displayName": "CrossDeviceResume is Disabled.", + "description": "CrossDeviceResume is Disabled." + } + ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain", - "displayName": "Enable curtaining of remote access hosts (User)", + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal", + "displayName": "Do not display the password reveal button (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_0", + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_1", + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal_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)", + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders", + "displayName": "Prohibit User from manually redirecting Profile Folders (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_0", + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_1", + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders_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_display_configuremultipledisplaymode", + "displayName": "Configure Multiple Display Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_display_configuremultipledisplaymode_0", + "displayName": "Default.", + "description": "Default." + }, + { + "id": "user_vendor_msft_policy_config_display_configuremultipledisplaymode_1", + "displayName": "Internal Only.", + "description": "Internal Only." + }, + { + "id": "user_vendor_msft_policy_config_display_configuremultipledisplaymode_2", + "displayName": "External Only.", + "description": "External Only." + }, + { + "id": "user_vendor_msft_policy_config_display_configuremultipledisplaymode_3", + "displayName": "Clone.", + "description": "Clone." + }, + { + "id": "user_vendor_msft_policy_config_display_configuremultipledisplaymode_4", + "displayName": "Extend.", + "description": "Extend." + } + ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters", - "displayName": "Additional command line parameters for Google Chrome (User)", + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi", + "displayName": "Enable Per Process Dpi (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_0", + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi_0", "displayName": "Disabled", - "description": null + "description": "Disable." }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_1", + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi_1", "displayName": "Enabled", - "description": null + "description": "Enable." } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_additionallaunchparameters", - "displayName": "Additional command line parameters for Google Chrome (User)", + "id": "user_vendor_msft_policy_config_display_setclonepreferredresolutionsource", + "displayName": "Set Clone Preferred Resolution Source (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_display_setclonepreferredresolutionsource_0", + "displayName": "Default.", + "description": "Default." + }, + { + "id": "user_vendor_msft_policy_config_display_setclonepreferredresolutionsource_1", + "displayName": "Internal.", + "description": "Internal." + }, + { + "id": "user_vendor_msft_policy_config_display_setclonepreferredresolutionsource_2", + "displayName": "External.", + "description": "External." + } + ] + }, + { + "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_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled", - "displayName": "Enable sending downloads to Google for deep scanning for users enrolled in the Advanced Protection program (User)", + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters", + "displayName": "Prevent Adding New Printers (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_0", + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters_0", "displayName": "Disabled", - "description": null + "description": "Allow user installation." }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_1", + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters_1", "displayName": "Enabled", - "description": null + "description": "Prevent user installation." } ] }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins", - "displayName": "Allow running plugins that are outdated (User)", + "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_excel16v10~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_excelforcesupportforunicodesurrogates", + "displayName": "Force support for Unicode surrogates in Excel 2021 and Excel 2024 (User)", "options": [ { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_0", + "id": "user_vendor_msft_policy_config_excel16v10~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_excelforcesupportforunicodesurrogates_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_1", + "id": "user_vendor_msft_policy_config_excel16v10~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_excelforcesupportforunicodesurrogates_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins", - "displayName": "Always runs plugins that require authorization (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled", - "displayName": "Allows the AppCache feature to be re-enabled even if it is off by default. (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes", - "displayName": "Allow Google Chrome Frame to handle the listed content types (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_chromeframecontenttypesdesc", - "displayName": "Allow Google Chrome Frame to handle the listed content types (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings", - "displayName": "Default HTML renderer for Google Chrome Frame (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings", - "displayName": "Default HTML renderer for Google Chrome Frame (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_0", - "displayName": "Use the host browser by default", + "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_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_1", - "displayName": "Use Google Chrome Frame by default", + "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_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit", - "displayName": "Clear site data on browser shutdown (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed", - "displayName": "Suppress Google Cloud Print deprecation messages (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled", - "displayName": "Use the legacy CORS implementation rather than new CORS (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist", - "displayName": "Enable CORS check mitigations in the new CORS implementation (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_1", - "displayName": "Enabled", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting", - "displayName": "Control use of the File Handling API (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting_2", - "displayName": "Do not allow any web app to access file types via the File Handling API", + "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_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", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting", - "displayName": "Default key generation setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting", - "displayName": "Default key generation setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_1", - "displayName": "Allow all sites to use key generation", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_2", - "displayName": "Do not allow any site to use key generation", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting", - "displayName": "Default Flash setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting", - "displayName": "Default Flash setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_1", - "displayName": "Allow all sites to automatically run the Flash plugin", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_2", - "displayName": "Block the Flash plugin", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_3", - "displayName": "Click to play", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl", - "displayName": "Default search provider instant URL (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_1", - "displayName": "Enabled", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_1", - "displayName": "Enabled", + "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_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_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_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled", - "displayName": "Enable DHE cipher suites in TLS (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins", - "displayName": "Specify a list of disabled plugins (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_disabledpluginsexceptionsdesc", - "displayName": "List of exceptions to the list of disabled plugins (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder", - "displayName": "Specify whether the plugin finder should be disabled (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy", - "displayName": "Disable SPDY protocol (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting", - "displayName": "Disable TLS False Start (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled", - "displayName": "Enable network prediction (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors", - "displayName": "Allow certificates issued by local trust anchors without subjectAlternativeName extension (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting", - "displayName": "Enable deprecated privet printing (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin", - "displayName": "Enable the old web-based signin flow (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures", - "displayName": "Enable deprecated web platform features for a limited time (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_1", - "displayName": "Enabled", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure", - "displayName": "Enable trust in Symantec Corporation's Legacy PKI Infrastructure (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename", - "displayName": "Enterprise web store name (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls", - "displayName": "Allow the File Handling API on these web apps (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess", - "displayName": "Force networking code to run in the browser process (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir", - "displayName": "Set Google Chrome Frame user data directory (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_gcfuserdatadir", - "displayName": "Set user data directory (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo", - "displayName": "Prevent app promotions from appearing on the new tab page (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled", - "displayName": "Enable HTTP/0.9 support on non-default ports (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled", - "displayName": "Enable Instant (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls", - "displayName": "Allow key generation on these sites (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_keygenallowedforurlsdesc", - "displayName": "Allow key generation on these sites (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls", - "displayName": "Block key generation on these sites (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_keygenblockedforurlsdesc", - "displayName": "Block key generation on these sites (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled", - "displayName": "Default legacy SameSite cookie behavior setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", - "displayName": "Default legacy SameSite cookie behavior setting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", - "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "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_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_2", - "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "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_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled", - "displayName": "Enable chrome://devices (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken", - "displayName": "The enrollment token of cloud policy on desktop (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords", - "displayName": "Allow users to show passwords in Password Manager (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls", - "displayName": "Allow the Flash plugin on these sites (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal", - "displayName": "Enable firewall traversal from remote access client (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies", - "displayName": "Policy overrides for Debug builds of the remote access host (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix", - "displayName": "Configure the TalkGadget prefix for remote access hosts (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_renderinhostlistdesc", - "displayName": "Always render the following URL patterns in the host browser (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode", - "displayName": "Extend Flash content setting to all content (deprecated) (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed", - "displayName": "Allow users to opt in to Safe Browsing extended reporting (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck", - "displayName": "Skip the meta tag check in Google Chrome Frame (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin", - "displayName": "Minimum TLS version to fallback to (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin", - "displayName": "Minimum TLS version to fallback to (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.1", - "displayName": "TLS 1.1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.2", - "displayName": "TLS 1.2", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax", - "displayName": "Maximum SSL version enabled (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax", - "displayName": "Maximum SSL version enabled (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.2", - "displayName": "TLS 1.2", + "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_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.3", - "displayName": "TLS 1.3", + "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_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled", - "displayName": "Enable creation of supervised users (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt", - "displayName": "Suppress the Google Chrome Frame turndown prompt (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled", - "displayName": "Allow background tabs freeze (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed", - "displayName": "Allow sites to simultaneously navigate and open pop-ups (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled", - "displayName": "Enable a TLS 1.3 security feature for local trust anchors. (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled", - "displayName": "Enable 3DES cipher suites in TLS (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols", - "displayName": "Use Legacy Form Controls until M84. (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled", - "displayName": "Control the User-Agent Client Hints feature. (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled", - "displayName": "Re-enable Web Components v0 API until M84. (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies", - "displayName": "Allow WebDriver to Override Incompatible Policies (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_1", + "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_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled", - "displayName": "Enable showing the welcome page on the first browser launch following OS upgrade (User)", + "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_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_0", + "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_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_1", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl", - "displayName": "Configure the change password URL. (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_1", - "displayName": "Enabled", + "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_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)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_0", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_1", + "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_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_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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger", - "displayName": "Password protection warning trigger (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_0", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_1", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", - "displayName": "Password protection warning trigger (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", - "displayName": "Password protection warning is off", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", - "displayName": "Password protection warning is triggered by password reuse", + "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_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_2", - "displayName": "Password protection warning is triggered by password reuse on phishing page", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains", - "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_0", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_0", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_1", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel", - "displayName": "Safe Browsing Protection Level (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel", - "displayName": "Safe Browsing Protection Level (User)", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_0", - "displayName": "Safe Browsing is never active.", + "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_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_1", - "displayName": "Safe Browsing is active in the standard mode.", + "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_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.", + "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_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins", - "displayName": "Allow Same Origin Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_0", + "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_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_1", + "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_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_sameorigintabcaptureallowedbyoriginsdesc", - "displayName": "Allow Same Origin Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed", - "displayName": "Allow or deny screen capture (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_0", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_1", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins", - "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_0", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_1", + "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_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_screencaptureallowedbyoriginsdesc", - "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins", - "displayName": "Allow Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_0", + "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_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_1", + "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_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_tabcaptureallowedbyoriginsdesc", - "displayName": "Allow Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins", - "displayName": "Allow Window and Tab capture by these origins (User)", + "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_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_0", + "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_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_0", - "displayName": "Disabled", + "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_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_1", - "displayName": "Enabled", + "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_chromeintunev1~policy~googlechrome~startup_homepagelocation", - "displayName": "Configure the home page URL (User)", + "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_chromeintunev1~policy~googlechrome~startup_homepagelocation_0", + "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_chromeintunev1~policy~googlechrome~startup_homepagelocation_1", + "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_chromeintunev1~policy~googlechrome~startup_homepagelocation_homepagelocation", - "displayName": "Home page URL (User)", + "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_chromeintunev1~policy~googlechrome~startup_newtabpagelocation", - "displayName": "Configure the New Tab page URL (User)", + "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_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_0", + "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_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_1", + "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_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_newtabpagelocation", - "displayName": "New Tab page URL (User)", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup", - "displayName": "Action on startup (User)", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_0", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_1", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup", - "displayName": "Action on startup (User)", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_5", - "displayName": "Open New Tab Page", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_1", - "displayName": "Restore the last session", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_4", - "displayName": "Open a list of URLs", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls", - "displayName": "URLs to open on startup (User)", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_0", + "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_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_1", + "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_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)", + "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_chromeintunev1~policy~googlechrome~startup_showhomebutton_0", + "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_chromeintunev1~policy~googlechrome~startup_showhomebutton_1", + "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_credentialsui_disablepasswordreveal", - "displayName": "Do not display the password reveal button (User)", + "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_credentialsui_disablepasswordreveal_0", + "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_credentialsui_disablepasswordreveal_1", + "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_desktop_preventuserredirectionofprofilefolders", - "displayName": "Prohibit User from manually redirecting Profile Folders (User)", + "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_desktop_preventuserredirectionofprofilefolders_0", + "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_desktop_preventuserredirectionofprofilefolders_1", + "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_display_enableperprocessdpi", - "displayName": "Enable Per Process Dpi (User)", + "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_display_enableperprocessdpi_0", + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", "displayName": "Disabled", - "description": "Disable." + "description": null }, { - "id": "user_vendor_msft_policy_config_display_enableperprocessdpi_1", + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", "displayName": "Enabled", - "description": "Enable." + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_education_allowgraphingcalculator", - "displayName": "Allow Graphing Calculator (User)", + "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_education_allowgraphingcalculator_0", - "displayName": "Block", - "description": "Disabled." + "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_education_allowgraphingcalculator_1", - "displayName": "Allow", - "description": "Enabled." + "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_education_defaultprintername", - "displayName": "Default Printer Name (User)", - "options": null - }, - { - "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters", - "displayName": "Prevent Adding New Printers (User)", + "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_education_preventaddingnewprinters_0", + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", "displayName": "Disabled", - "description": "Allow user installation." + "description": null }, { - "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters_1", + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", "displayName": "Enabled", - "description": "Prevent user installation." + "description": null } ] }, { - "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)", + "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_customizableerrormessages_l_listoferrormessagestocustomize", - "displayName": "List of error messages to customize (User)", + "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_customizableerrormessages_l_listoferrormessagestocustomize_0", + "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_customizableerrormessages_l_listoferrormessagestocustomize_1", + "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_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", + "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_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks", - "displayName": "Do not show data extraction options when opening corrupt workbooks (User)", + "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_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks_0", + "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_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks_1", + "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_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165", - "displayName": "Disable commands (User)", + "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_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165_0", + "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_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165_1", + "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_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_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_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166", - "displayName": "Disable shortcut keys (User)", + "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_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166_0", + "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_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166_1", + "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_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)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros", - "displayName": "Developer tab | Code | Macros (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros_1", - "displayName": "True", + "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_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", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacrosecurity_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro", - "displayName": "Developer tab | Code | Record Macro (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic", - "displayName": "Developer tab | Code | Visual Basic (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink", - "displayName": "Insert tab | Links | Hyperlink (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient", - "displayName": "File tab | Share | Email (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation", - "displayName": "File tab | Options | Customize Ribbon | All Commands | Document Location (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview", - "displayName": "File tab | Options | Customize Ribbon | All Commands | Web Page Preview (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing", - "displayName": "Review tab | Changes | Protect and Share Workbook (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet", - "displayName": "Review tab | Changes | Protect Sheet (User)", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet_1", - "displayName": "True", + "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_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", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectworkbook_1", - "displayName": "True", + "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_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", + "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_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_viewmacrosmacros_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys", - "displayName": "Disable shortcut keys (User)", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_0", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_1", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros", - "displayName": "Alt+F8 (Developer | Code | Macros) (User)", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_1", - "displayName": "True", + "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_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", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altlvdevelopercodevisualbasic_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind", - "displayName": "Ctrl+F (Home | Editing | Find & Select | Find) (User)", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind_1", - "displayName": "True", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks", - "displayName": "Ctrl+K (Insert | Links | Hyperlink) (User)", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks_0", - "displayName": "False", + "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_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks_1", - "displayName": "True", + "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_advanced_l_alertbeforeoverwritingcells", - "displayName": "Alert before overwriting cells (User)", + "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_advanced_l_alertbeforeoverwritingcells_0", + "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_advanced_l_alertbeforeoverwritingcells_1", + "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_advanced_l_alternatestartupfilelocation", - "displayName": "Alternate startup file location (User)", + "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_advanced_l_alternatestartupfilelocation_0", - "displayName": "Disabled", + "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_advanced_l_alternatestartupfilelocation_1", - "displayName": "Enabled", + "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_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)", + "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_advanced_l_asktoupdateautomaticlinks_0", + "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_advanced_l_asktoupdateautomaticlinks_1", + "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_advanced_l_automaticallyflashfill", - "displayName": "Automatically Flash Fill (User)", + "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_advanced_l_automaticallyflashfill_0", - "displayName": "Disabled", + "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_advanced_l_automaticallyflashfill_1", - "displayName": "Enabled", + "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_advanced_l_automaticallyinsertadecimalpoint", - "displayName": "Automatically insert a decimal point (User)", + "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_advanced_l_automaticallyinsertadecimalpoint_0", + "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_advanced_l_automaticallyinsertadecimalpoint_1", + "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_advanced_l_chartreftrackingenabled", - "displayName": "Allow formatting and labels to track data points (User)", + "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_advanced_l_chartreftrackingenabled_0", - "displayName": "Disabled", + "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_advanced_l_chartreftrackingenabled_1", - "displayName": "Enabled", + "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_advanced_l_comments", - "displayName": "Comments (User)", + "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_advanced_l_comments_0", + "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_advanced_l_comments_1", + "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_advanced_l_comments_l_comments85", - "displayName": "Comments (User)", + "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_advanced_l_comments_l_comments85_0", - "displayName": "None", + "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_advanced_l_comments_l_comments85_1", - "displayName": "Comment indicator only", + "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_advanced_l_comments_l_comments85_2", - "displayName": "Comment & indicator", + "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_advanced_l_cursormovement", - "displayName": "Cursor movement (User)", + "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_advanced_l_cursormovement_0", + "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_advanced_l_cursormovement_1", + "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_advanced_l_cursormovement_l_cursormovement82", - "displayName": "Cursor movement (User)", + "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_advanced_l_cursormovement_l_cursormovement82_0", - "displayName": "Logical", + "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_advanced_l_cursormovement_l_cursormovement82_1", - "displayName": "Visual", + "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_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", + "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_advanced_l_cutandcopyobjectswithcells_1", - "displayName": "Enabled", + "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_advanced_l_defaultdirection", - "displayName": "Default sheet direction (User)", + "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_advanced_l_defaultdirection_0", + "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_advanced_l_defaultdirection_1", + "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_advanced_l_defaultdirection_l_defaultdirection81", - "displayName": "Default sheet direction (User)", + "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_advanced_l_defaultdirection_l_defaultdirection81_1", - "displayName": "Right-to-Left", + "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_advanced_l_defaultdirection_l_defaultdirection81_0", - "displayName": "Left-to-Right", + "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_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", + "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_advanced_l_editdirectlyincell_1", - "displayName": "Enabled", + "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_advanced_l_enableautocompleteforcellvalues", - "displayName": "Enable AutoComplete for cell values (User)", + "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_advanced_l_enableautocompleteforcellvalues_0", + "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_advanced_l_enableautocompleteforcellvalues_1", + "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_advanced_l_enableautomaticpercententry", - "displayName": "Enable automatic percent entry (User)", + "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_advanced_l_enableautomaticpercententry_0", - "displayName": "Disabled", + "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_advanced_l_enableautomaticpercententry_1", - "displayName": "Enabled", + "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_advanced_l_enablefillhandleandcelldraganddrop", - "displayName": "Enable fill handle and cell drag-and-drop (User)", + "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_advanced_l_enablefillhandleandcelldraganddrop_0", + "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_advanced_l_enablefillhandleandcelldraganddrop_1", + "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_advanced_l_extenddatarangeformatsandformulas", - "displayName": "Extend data range formats and formulas (User)", + "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_advanced_l_extenddatarangeformatsandformulas_0", - "displayName": "Disabled", + "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_advanced_l_extenddatarangeformatsandformulas_1", - "displayName": "Enabled", + "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_advanced_l_functiontooltips", - "displayName": "Function tooltips (User)", + "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_advanced_l_functiontooltips_0", + "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_advanced_l_functiontooltips_1", + "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_advanced_l_ignoreotherapplications", - "displayName": "Ignore other applications (User)", + "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_advanced_l_ignoreotherapplications_0", - "displayName": "Disabled", + "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_advanced_l_ignoreotherapplications_1", - "displayName": "Enabled", + "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_advanced_l_microsoftexcelmenuorhelpkey", - "displayName": "Microsoft Excel menu or Help key (User)", + "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_advanced_l_microsoftexcelmenuorhelpkey_0", + "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_advanced_l_microsoftexcelmenuorhelpkey_1", + "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_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)", + "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_advanced_l_moveselectionafterenter_0", - "displayName": "Disabled", + "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_advanced_l_moveselectionafterenter_1", - "displayName": "Enabled", + "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_advanced_l_moveselectionafterenterdirection", - "displayName": "Move selection after Enter direction (User)", + "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_advanced_l_moveselectionafterenterdirection_0", + "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_advanced_l_moveselectionafterenterdirection_1", + "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_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84", - "displayName": "Move selection after Enter direction (User)", + "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_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_0", - "displayName": "Down", + "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_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_1", - "displayName": "Right", + "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_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_2", - "displayName": "Up", + "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_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_3", - "displayName": "Left", + "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_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", + "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_advanced_l_recentlyusedfilelist_1", - "displayName": "Enabled", + "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_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)", + "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_advanced_l_setnumberofplacesintherecentplaceslist_0", + "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_advanced_l_setnumberofplacesintherecentplaceslist_1", + "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_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)", + "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_advanced_l_showalertifnotdefault_0", - "displayName": "Disabled", + "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_advanced_l_showalertifnotdefault_1", - "displayName": "Enabled", + "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_advanced_l_showcontrolcharacters", - "displayName": "Show control characters (User)", + "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_advanced_l_showcontrolcharacters_0", + "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_advanced_l_showcontrolcharacters_1", + "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_advanced_l_showformulabarinfullview", - "displayName": "Show Formula bar in Full View (User)", + "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_advanced_l_showformulabarinfullview_0", - "displayName": "Disabled", + "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_advanced_l_showformulabarinfullview_1", - "displayName": "Enabled", + "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_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", + "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_advanced_l_showformulabarinnormalview_1", - "displayName": "Enabled", + "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_advanced_l_showinsertoptionsbuttons", - "displayName": "Show Insert Options buttons (User)", + "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_advanced_l_showinsertoptionsbuttons_0", + "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_advanced_l_showinsertoptionsbuttons_1", + "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_advanced_l_shownames", - "displayName": "Show names (User)", + "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_advanced_l_shownames_0", - "displayName": "Disabled", + "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_advanced_l_shownames_1", - "displayName": "Enabled", + "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_advanced_l_showpasteoptionsbuttonwhencontentispasted", - "displayName": "Show Paste Options button when content is pasted (User)", + "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_advanced_l_showpasteoptionsbuttonwhencontentispasted_0", + "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_advanced_l_showpasteoptionsbuttonwhencontentispasted_1", + "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_advanced_l_showvalues", - "displayName": "Show values (User)", + "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_advanced_l_showvalues_0", - "displayName": "Disabled", + "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_advanced_l_showvalues_1", - "displayName": "Enabled", + "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_advanced_l_transitionnavigationkeys", - "displayName": "Transition navigation keys (User)", + "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_advanced_l_transitionnavigationkeys_0", + "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_advanced_l_transitionnavigationkeys_1", + "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_advanced_l_zoomonrollwithintellimouse", - "displayName": "Zoom on roll with IntelliMouse (User)", + "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_advanced_l_zoomonrollwithintellimouse_0", - "displayName": "Disabled", + "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_advanced_l_zoomonrollwithintellimouse_1", - "displayName": "Enabled", + "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_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel", - "displayName": "Load pictures from Web pages not created in Excel (User)", + "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_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel_0", + "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_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel_1", + "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_formulas_l_r1c1referencestyle", - "displayName": "R1C1 reference style (User)", + "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_formulas_l_r1c1referencestyle_0", - "displayName": "Disabled", + "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_formulas_l_r1c1referencestyle_1", - "displayName": "Enabled", + "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_optionscustomizeribbon_l_displaydevelopertab", - "displayName": "Display Developer tab in the Ribbon (User)", + "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_optionscustomizeribbon_l_displaydevelopertab_0", + "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_optionscustomizeribbon_l_displaydevelopertab_1", + "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_optionsgeneral_l_allowquickanalysis", - "displayName": "Show Quick Analysis options on selection (User)", + "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_optionsgeneral_l_allowquickanalysis_0", - "displayName": "Disabled", + "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_optionsgeneral_l_allowquickanalysis_1", - "displayName": "Enabled", + "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_optionsgeneral_l_allowselectionfloaties", - "displayName": "Show Mini Toolbar on selection (User)", + "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_optionsgeneral_l_allowselectionfloaties_0", + "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_optionsgeneral_l_allowselectionfloaties_1", + "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_optionsgeneral_l_defaultsheets", - "displayName": "Default Sheets (User)", + "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_optionsgeneral_l_defaultsheets_0", - "displayName": "Disabled", + "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_optionsgeneral_l_defaultsheets_1", - "displayName": "Enabled", + "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_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)", + "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_optionsgeneral_l_disablelivepreview_0", + "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_optionsgeneral_l_disablelivepreview_1", + "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_optionsgeneral_l_font", - "displayName": "Font (User)", + "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_optionsgeneral_l_font_0", - "displayName": "Disabled", + "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_optionsgeneral_l_font_1", - "displayName": "Enabled", + "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_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)", + "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_optionsgeneral_l_windowsintaskbar_0", + "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_optionsgeneral_l_windowsintaskbar_1", + "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_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist", - "displayName": "Include new rows and columns in table (User)", + "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_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist_0", - "displayName": "Disabled", + "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_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist_1", - "displayName": "Enabled", + "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_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks", - "displayName": "Internet and network paths as hyperlinks (User)", + "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_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks_0", + "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_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks_1", + "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_save_l_autorecoverdelay", - "displayName": "AutoRecover delay (User)", + "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_save_l_autorecoverdelay_0", - "displayName": "Disabled", + "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_save_l_autorecoverdelay_1", - "displayName": "Enabled", + "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_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)", + "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_save_l_autorecoversavelocation_0", + "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_save_l_autorecoversavelocation_1", + "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_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)", + "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_save_l_autorecovertime_0", - "displayName": "Disabled", + "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_save_l_autorecovertime_1", - "displayName": "Enabled", + "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_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)", + "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_save_l_defaultfilelocation_0", + "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_save_l_defaultfilelocation_1", + "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_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)", + "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_save_l_disableautorepublish_0", + "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_save_l_disableautorepublish_1", + "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_save_l_donotshowautorepublishwarningalert", - "displayName": "Do not show AutoRepublish warning alert (User)", + "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_save_l_donotshowautorepublishwarningalert_0", + "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_save_l_donotshowautorepublishwarningalert_1", + "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_save_l_keeplastautosavedversions", - "displayName": "Keep the last AutoSaved versions of files for the next session (User)", + "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_save_l_keeplastautosavedversions_0", + "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_save_l_keeplastautosavedversions_1", + "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_save_l_promptforworkbookproperties", - "displayName": "Prompt for workbook properties (User)", + "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_save_l_promptforworkbookproperties_0", - "displayName": "Disabled", + "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_save_l_promptforworkbookproperties_1", - "displayName": "Enabled", + "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_save_l_saveautorecoverinfo", - "displayName": "Save AutoRecover info (User)", + "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_save_l_saveautorecoverinfo_0", - "displayName": "Disabled", + "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_save_l_saveautorecoverinfo_1", - "displayName": "Enabled", + "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_save_l_saveexcelfilesas", - "displayName": "Default file format (User)", + "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_save_l_saveexcelfilesas_0", + "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_save_l_saveexcelfilesas_1", + "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_save_l_saveexcelfilesas_l_saveexcelfilesas1", - "displayName": "Save Excel files as (User)", + "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_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)", + "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_save_l_saveexcelfilesas_l_saveexcelfilesas1_60", - "displayName": "OpenDocument Spreadsheet (*.ods)", + "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_save_l_turnofffileformatcompatiblitydialogforods", - "displayName": "Suppress file format compatibility dialog box for OpenDocument Spreadsheet format (User)", + "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_save_l_turnofffileformatcompatiblitydialogforods_0", + "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_save_l_turnofffileformatcompatiblitydialogforods_1", + "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_determinewhethertoforceencryptedexcel", - "displayName": "Scan encrypted macros in Excel Open XML workbooks (User)", + "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_determinewhethertoforceencryptedexcel_0", + "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_determinewhethertoforceencryptedexcel_1", + "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_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid", - "displayName": "", + "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_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", + "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_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid_2", - "displayName": "Load macros without scanning", + "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_forcefileextenstionstomatch", - "displayName": "Force file extension to match file type (User)", + "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_forcefileextenstionstomatch_0", + "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_forcefileextenstionstomatch_1", + "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_forcefileextenstionstomatch_l_empty", - "displayName": "", + "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_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", + "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_forcefileextenstionstomatch_l_empty_2", - "displayName": "Always match file type", + "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_performfilevalidationonpivotcaches", - "displayName": "Perform file validation on pivot caches (User)", + "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_performfilevalidationonpivotcaches_0", + "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_performfilevalidationonpivotcaches_1", + "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_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid", - "displayName": "", + "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_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", + "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_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid_2", - "displayName": "Always perform validation", + "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_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_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_webcontentwarninglevel", - "displayName": "WEBSERVICE Function Notification Settings (User)", + "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_webcontentwarninglevel_0", + "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_webcontentwarninglevel_1", + "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_webcontentwarninglevel_l_webcontentwarninglevelvalue", - "displayName": "", + "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_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", + "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_webcontentwarninglevel_l_webcontentwarninglevelvalue_2", - "displayName": "Disable all without notification", + "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_cryptography_l_configurecngcipherchainingmode", - "displayName": "Configure CNG cipher chaining mode (User)", + "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_cryptography_l_configurecngcipherchainingmode_0", + "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_cryptography_l_configurecngcipherchainingmode_1", + "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_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", - "displayName": "", + "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_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", - "displayName": "Cipher Block Chaining (CBC)", + "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_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", - "displayName": "Cipher Feedback (CFB)", + "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_cryptography_l_setcngcipheralgorithm", - "displayName": "Set CNG cipher algorithm (User)", + "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_cryptography_l_setcngcipheralgorithm_0", + "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_cryptography_l_setcngcipheralgorithm_1", + "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_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)", + "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_cryptography_l_setcngcipherkeylength_0", - "displayName": "Disabled", + "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_cryptography_l_setcngcipherkeylength_1", - "displayName": "Enabled", + "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_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", - "displayName": "Cipher key length (User)", + "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_cryptography_l_setcngpasswordspincount", - "displayName": "Set CNG password spin count (User)", + "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_cryptography_l_setcngpasswordspincount_0", + "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_cryptography_l_setcngpasswordspincount_1", + "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_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)", + "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_cryptography_l_setparametersforcngcontext_0", - "displayName": "Disabled", + "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_cryptography_l_setparametersforcngcontext_1", - "displayName": "Enabled", + "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_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", - "displayName": "Parameters (User)", + "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_cryptography_l_specifycnghashalgorithm", - "displayName": "Specify CNG hash algorithm (User)", + "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_cryptography_l_specifycnghashalgorithm_0", + "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_cryptography_l_specifycnghashalgorithm_1", + "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_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", - "displayName": "", + "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_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", + "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_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", - "displayName": "SHA512", + "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_cryptography_l_specifycngrandomnumbergeneratoralgorithm", - "displayName": "Specify CNG random number generator algorithm (User)", + "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_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "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_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "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_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)", + "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_cryptography_l_specifycngsaltlength_0", - "displayName": "Disabled", + "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_cryptography_l_specifycngsaltlength_1", - "displayName": "Enabled", + "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_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", - "displayName": "Number of bytes (User)", + "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_cryptography_l_specifyencryptioncompatibility", - "displayName": "Specify encryption compatibility (User)", + "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_cryptography_l_specifyencryptioncompatibility_0", + "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_cryptography_l_specifyencryptioncompatibility_1", + "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_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", - "displayName": "", + "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_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", + "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_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", - "displayName": "All files save with next generation format", + "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_cryptography_l_usenewkeyonpasswordchange", - "displayName": "Use new key on password change (User)", + "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_cryptography_l_usenewkeyonpasswordchange_0", + "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_cryptography_l_usenewkeyonpasswordchange_1", + "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_blockmacroexecutionfrominternet", - "displayName": "Block macros from running in Office files from the Internet (User)", + "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_blockmacroexecutionfrominternet_0", - "displayName": "Disabled", + "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_blockmacroexecutionfrominternet_1", - "displayName": "Enabled", + "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_disableallapplicationextensions", - "displayName": "Disable all application add-ins (User)", + "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_disableallapplicationextensions_0", + "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_disableallapplicationextensions_1", + "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_disabletrustbarnotificationforunsigned", - "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "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_disabletrustbarnotificationforunsigned_0", - "displayName": "Disabled", + "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_disabletrustbarnotificationforunsigned_1", - "displayName": "Enabled", + "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_disabletrustbarnotificationforunsigned_v2", - "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "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_disabletrustbarnotificationforunsigned_v2_0", + "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_disabletrustbarnotificationforunsigned_v2_1", + "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_requirethatapplicationextensionsaresigned", - "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "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_requirethatapplicationextensionsaresigned_0", - "displayName": "Disabled", + "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_requirethatapplicationextensionsaresigned_1", - "displayName": "Enabled", + "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_setmaximumnumberoftrusteddocuments", - "displayName": "Set maximum number of trusted documents (User)", + "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_setmaximumnumberoftrusteddocuments_0", + "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_setmaximumnumberoftrusteddocuments_1", + "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_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)", + "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_setmaximumnumberoftrustrecordstopreserve_0", - "displayName": "Disabled", + "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_setmaximumnumberoftrustrecordstopreserve_1", - "displayName": "Enabled", + "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_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", - "displayName": "Maximum to preserve: (User)", + "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_storemacroinpersonalmacroworkbookbydefault", - "displayName": "Store macro in Personal Macro Workbook by default (User)", + "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_storemacroinpersonalmacroworkbookbydefault_0", + "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_storemacroinpersonalmacroworkbookbydefault_1", + "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_trustaccesstovisualbasicproject", - "displayName": "Trust access to Visual Basic Project (User)", + "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_trustaccesstovisualbasicproject_0", - "displayName": "Disabled", + "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_trustaccesstovisualbasicproject_1", - "displayName": "Enabled", + "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_turnofftrusteddocuments", - "displayName": "Turn off trusted documents (User)", + "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_turnofftrusteddocuments_0", + "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_turnofftrusteddocuments_1", + "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_turnofftrusteddocumentsonthenetwork", - "displayName": "Turn off Trusted Documents on the network (User)", + "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_turnofftrusteddocumentsonthenetwork_0", - "displayName": "Disabled", + "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_turnofftrusteddocumentsonthenetwork_1", - "displayName": "Enabled", + "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_vbawarningspolicy", - "displayName": "VBA Macro Notification Settings (User)", + "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_vbawarningspolicy_0", + "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_vbawarningspolicy_1", + "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_vbawarningspolicy_l_empty4", - "displayName": "", + "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_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", + "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_vbawarningspolicy_l_empty4_1", - "displayName": "Enable all macros (not recommended)", + "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_fileblocksettings_l_dbaseiiiandivfiles", - "displayName": "dBase III / IV files (User)", + "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_fileblocksettings_l_dbaseiiiandivfiles_0", + "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_fileblocksettings_l_dbaseiiiandivfiles_1", + "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_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid", - "displayName": "File block setting: (User)", + "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_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid_0", - "displayName": "Do not block", + "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_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_fileblocksettings_l_difandsylkfiles", - "displayName": "Dif and Sylk files (User)", + "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_fileblocksettings_l_difandsylkfiles_0", + "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_fileblocksettings_l_difandsylkfiles_1", + "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_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_fileblocksettings_l_excel2007andlateraddinfiles", - "displayName": "Excel 2007 and later add-in files (User)", + "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_fileblocksettings_l_excel2007andlateraddinfiles_0", + "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_fileblocksettings_l_excel2007andlateraddinfiles_1", + "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_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_fileblocksettings_l_excel2007andlaterbinaryworkbooks", - "displayName": "Excel 2007 and later binary workbooks (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates", - "displayName": "Excel 2007 and later macro-enabled workbooks and templates (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_3", - "displayName": "Block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_4", - "displayName": "Open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates", - "displayName": "Excel 2007 and later workbooks and templates (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid", - "displayName": "File block setting: (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_0", - "displayName": "Do not block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_1", - "displayName": "Save blocked", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_3", - "displayName": "Block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_4", - "displayName": "Open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles", - "displayName": "Excel 2 macrosheets and add-in files (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_3", - "displayName": "Block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_4", - "displayName": "Open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets", - "displayName": "Excel 2 worksheets (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_3", - "displayName": "Block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_4", - "displayName": "Open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles", - "displayName": "Excel 3 macrosheets and add-in files (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid", - "displayName": "File block setting: (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_0", - "displayName": "Do not block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_3", - "displayName": "Block", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_4", - "displayName": "Open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_5", - "displayName": "Allow editing and open in Protected View", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets", - "displayName": "Excel 3 worksheets (User)", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_0", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_1", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_3", - "displayName": "Block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_4", - "displayName": "Open in Protected View", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles", - "displayName": "Excel 4 macrosheets and add-in files (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_0", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_1", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid", - "displayName": "File block setting: (User)", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_3", - "displayName": "Block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_4", - "displayName": "Open in Protected View", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks", - "displayName": "Excel 4 workbooks (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_0", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_1", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid", - "displayName": "File block setting: (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_0", - "displayName": "Do not block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_3", - "displayName": "Block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_4", - "displayName": "Open in Protected View", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets", - "displayName": "Excel 4 worksheets (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_0", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_1", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid", - "displayName": "File block setting: (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_0", - "displayName": "Do not block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_2", - "displayName": "Open/Save blocked, use open policy", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_3", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_4", - "displayName": "Open in Protected View", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates", - "displayName": "Excel 95-97 workbooks and templates (User)", + "id": "user_vendor_msft_policy_config_excel16v9~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excelfileblockexternallinks", + "displayName": "File Block includes external link files (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_0", + "id": "user_vendor_msft_policy_config_excel16v9~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excelfileblockexternallinks_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", + "id": "user_vendor_msft_policy_config_excel16v9~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excelfileblockexternallinks_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)", + "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_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_experience_allowtailoredexperienceswithdiagnosticdata_0", + "displayName": "Block", + "description": "Not allowed." }, { - "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_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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_3", + "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight_0", "displayName": "Block", - "description": null + "description": "Third-party suggestions not allowed." }, { - "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_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_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_experience_allowwindowsspotlight_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "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)", + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter", + "displayName": "Allow Windows Spotlight On Action Center (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_experience_allowwindowsspotlightonactioncenter_0", + "displayName": "Block", + "description": "Not allowed." }, { - "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_experience_allowwindowsspotlightonactioncenter_1", + "displayName": "Allow", + "description": "Allowed." } ] }, { - "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)", + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings", + "displayName": "Allow Windows Spotlight On Settings (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_experience_allowwindowsspotlightonsettings_0", + "displayName": "Block", + "description": "Not allowed." }, { - "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_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_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_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_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_experience_configurewindowsspotlightonlockscreen_1", + "displayName": "Windows spotlight enabled.", + "description": "Windows spotlight enabled." }, { - "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_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_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_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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles", - "displayName": "Excel 97-2003 add-in files (User)", + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages", + "displayName": "Enable delivery of organizational messages (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_0", + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_0", "displayName": "Disabled", - "description": null + "description": "Disabled" }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_1", + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_1", "displayName": "Enabled", - "description": null + "description": "Enabled" } ] }, { - "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)", + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", + "displayName": "Allow Option To Show Network (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_fileexplorer_allowoptiontoshownetwork_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." }, { - "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_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_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_fileexplorer_allowoptiontoshowthispc_1", + "displayName": "Allowed.", + "description": "Allowed." } ] }, { - "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)", + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations", + "displayName": "Set Allowed Folder Locations (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_fileexplorer_setallowedfolderlocations_0", + "displayName": "Access to all folder locations.", + "description": "Access to all folder locations." }, { - "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_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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid", - "displayName": "File block setting: (User)", + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations", + "displayName": "Set Allowed Storage Locations (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_fileexplorer_setallowedstoragelocations_0", + "displayName": "Access to all storage locations.", + "description": "Access to all storage locations." }, { - "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_fileexplorer_setallowedstoragelocations_1", + "displayName": "Removable Drives", + "description": "Removable Drives" }, { - "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_fileexplorer_setallowedstoragelocations_2", + "displayName": "Sync roots", + "description": "Sync roots" }, { - "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_fileexplorer_setallowedstoragelocations_3", + "displayName": "Removable Drives, Sync roots", + "description": "Removable Drives, Sync roots" }, { - "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_fileexplorer_setallowedstoragelocations_4", + "displayName": "Local Drives", + "description": "Local Drives" }, { - "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_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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles", - "displayName": "Excel add-in files (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider_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", + "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering", + "displayName": "Turn on ActiveX Filtering (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_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_l_exceladdinfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_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", - "displayName": "Legacy converters for Excel (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist", + "displayName": "Add-on List (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_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)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_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_l_legacyconvertersforexceldropid_3", - "displayName": "Block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_4", - "displayName": "Open in Protected View", + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_0", + "displayName": "False", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_1", + "displayName": "True", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning", + "displayName": "Turn on certificate address mismatch warning (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", + "displayName": "Allow deleting browsing history on exit (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_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_l_microsoftofficeopenxmlconvertersforexceldropid_5", - "displayName": "Allow editing and open in Protected View", + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_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", - "displayName": "Microsoft Office query files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", + "displayName": "Turn on Enhanced Protected Mode (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_0", - "displayName": "Do not block", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_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_l_microsoftofficequeryfilesdropid_1", - "displayName": "Save blocked", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_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_l_microsoftofficequeryfilesdropid_3", - "displayName": "Block", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_4", - "displayName": "Open in Protected View", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_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_l_microsoftofficequeryfilesdropid_5", - "displayName": "Allow editing and open in Protected View", + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_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", - "displayName": "Microsoft Office data connection files (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_l_officedataconnectionfilesdropid_0", - "displayName": "Do not block", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_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_l_officedataconnectionfilesdropid_2", - "displayName": "Open/Save blocked, use open policy", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_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", - "displayName": "Offline cube files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate", + "displayName": "Internet Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", + "displayName": "Internet (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_1", + "displayName": "Low", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles", - "displayName": "OpenDocument Spreadsheet files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate", + "displayName": "Intranet Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", + "displayName": "Intranet (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", + "displayName": "Medium Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", + "displayName": "Medium", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_5", + "displayName": "Medium High", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_4", + "displayName": "High", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", + "displayName": "Local Machine Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", + "displayName": "Local Machine Zone (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", + "displayName": "Low", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior", - "displayName": "Set default file block behavior (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", + "displayName": "Locked-Down Internet Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_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": "", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", + "displayName": "Locked-Down Internet (User)", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles", - "displayName": "Text files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate", + "displayName": "Locked-Down Intranet Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", + "displayName": "Locked-Down Intranet (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets", - "displayName": "Web pages and Excel 2003 XML spreadsheets (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", + "displayName": "Locked-Down Local Machine Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", + "displayName": "Locked-Down Local Machine Zone (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_3", + "displayName": "Medium", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_5", + "displayName": "Medium High", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_4", + "displayName": "High", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", + "displayName": "Locked-Down Restricted Sites Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", + "displayName": "Locked-Down Restricted Sites (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist", + "displayName": "Site to Zone Assignment List (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_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": "", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", + "displayName": "Locked-Down Trusted Sites (User)", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_3", + "displayName": "Medium", "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", + "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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", + "displayName": "Restricted Sites Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", + "displayName": "Restricted Sites (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_2", + "displayName": "Medium Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_3", + "displayName": "Medium", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders", - "displayName": "Allow sub folders: (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", + "displayName": "Turn on Suggested Sites (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_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_l_allowsubfolders_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", + "displayName": "Trusted Sites Zone Template (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_0", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", + "displayName": "Trusted Sites (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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_1", + "displayName": "Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_2", + "displayName": "Medium Low", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_3", + "displayName": "Medium", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders12", - "displayName": "Allow sub folders: (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_autodetectintranet", + "displayName": "Turn on automatic detection of intranet (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", + "id": "user_vendor_msft_policy_config_internetexplorer_autodetectintranet_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_l_allowsubfolders12_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_autodetectintranet_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", + "displayName": "Check for server certificate revocation (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_0", + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_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", + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", + "displayName": "Check for signatures on downloaded programs (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", + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_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_l_allowsubfolders16_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_0", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", + "displayName": "First choice (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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_", + "displayName": "", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_1", + "displayName": "Microsoft Edge Stable", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_1", - "displayName": "Enabled", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders24_1", - "displayName": "True", + "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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", + "displayName": "Second choice (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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_", + "displayName": "", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_1", + "displayName": "Microsoft Edge Stable", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders28_1", - "displayName": "True", + "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_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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_1", - "displayName": "Enabled", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders32", - "displayName": "Allow sub folders: (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", + "displayName": "Third choice (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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_", + "displayName": "", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_1", + "displayName": "Microsoft Edge Stable", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_1", - "displayName": "Enabled", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders36", - "displayName": "Allow sub folders: (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", + "displayName": "Internet Explorer Processes (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", + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_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_l_allowsubfolders36_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders40_0", - "displayName": "False", + "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash_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_l_allowsubfolders40_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", + "displayName": "Prevent bypassing SmartScreen Filter warnings (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders44_0", - "displayName": "False", + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_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_l_allowsubfolders44_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview", + "displayName": "Turn off Compatibility View (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", + "displayName": "Disable \"Configuring History\" (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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_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_l_allowsubfolders48_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13", - "displayName": "Trusted Location #13 (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection", + "displayName": "Turn off Crash Detection (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders52_0", - "displayName": "False", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_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_l_allowsubfolders52_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading", + "displayName": "Prevent downloading of enclosures (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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_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_l_allowsubfolders56_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", + "displayName": "Turn off encryption support (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", + "displayName": "Secure Protocol combinations (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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_0", + "displayName": "Use no secure protocols", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8", + "displayName": "[Obsolete] Only use SSL 2.0", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_40", + "displayName": "[Obsolete] Use SSL 2.0 and SSL 3.0", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders64_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_136", + "displayName": "[Obsolete] Use SSL 2.0 and TLS 1.0", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_168", + "displayName": "[Obsolete] Use SSL 2.0, SSL 3.0, and TLS 1.0", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders68_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_520", + "displayName": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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": "[Obsolete] 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_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", + "displayName": "Prevent running First Run wizard (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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_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_l_allowsubfolders72_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", + "displayName": "Select your choice (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", + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_1", + "displayName": "Go directly to home page", "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", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders76", - "displayName": "Allow sub folders: (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders76_0", - "displayName": "False", + "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_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_l_allowsubfolders76_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation", + "displayName": "Turn off browser geolocation (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange", + "displayName": "Disable changing home page settings (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", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_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_l_allowsubfolders80_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_enterhomepageprompt", + "displayName": "Home Page (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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication", + "displayName": "Disable HTML Application (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors", + "displayName": "Prevent ignoring certificate errors (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", + "displayName": "Turn off InPrivate Browsing (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsusedasformatting_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsusedasformatting_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingformergedcells_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingformergedcells_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_0", + "displayName": "Never", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_1", - "displayName": "Enabled", + "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_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames", - "displayName": "Stop checking to ensure non-default sheet names (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom", + "displayName": "Disable Internet Explorer 11 Launch Via COM Automation (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerlaunchviacom_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensureworkbooksallowprogrammaticaccess_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensureworkbooksallowprogrammaticaccess_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange", + "displayName": "Prevent changing proxy settings (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_intelligentservices_l_insights_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_intelligentservices_l_insights_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", + "displayName": "Prevent changing the default search provider (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_blockallunmanagedaddins_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_blockallunmanagedaddins_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", + "displayName": "Disable changing secondary home page settings (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_defaultcustomtab_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_defaultcustomtab_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_disableofficestartexcel_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_disableofficestartexcel_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_donotcachenetworkfileslocally_0", + "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_donotcachenetworkfileslocally_1", + "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_enablefourdigityeardisplay_0", + "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_enablefourdigityeardisplay_1", + "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath", - "displayName": "Graph gallery path (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath_0", + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath_1", + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_0", + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_1", + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_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", + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_domainlist", + "displayName": "Domain allow list (User)", "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)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_0", + "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_1", + "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_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)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_l_olappivottableuserdefinedfunctionudfsecuritysetting171_3", - "displayName": "Allow NO UDFs", + "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath", - "displayName": "Personal templates path for Excel (User)", + "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_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath_0", + "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath_1", + "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", + "displayName": "Intranet Sites: Include all network paths (UNCs) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_0", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_1", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites", + "displayName": "Intranet Sites: Include all sites that bypass the proxy server (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlaunch_0", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites_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", + "id": "user_vendor_msft_policy_config_internetexplorer_includeallproxybypasssites_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlookup_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "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", + "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_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enabledatabasefileprotectedview", - "displayName": "Always open untrusted database files in Protected View (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enabledatabasefileprotectedview_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v4~policy~l_microsoftofficeexcel~l_powerbi_l_disablefrompowerbidatasetorganizationname_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v4~policy~l_microsoftofficeexcel~l_powerbi_l_disablefrompowerbidatasetorganizationname_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v5~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v5~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "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)", + "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_excel16v6~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_xl4killswitchpolicy_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v6~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_xl4killswitchpolicy_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script (User)", "options": [ { - "id": "user_vendor_msft_policy_config_excel16v7~policy~l_microsoftofficeexcel~l_miscellaneous168_l_exceldisableofficescripts_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v7~policy~l_microsoftofficeexcel~l_miscellaneous168_l_exceldisableofficescripts_1", - "displayName": "Enabled", + "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_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)", + "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_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_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": "", + "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_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_l_blockxllfrominternetenum_1", - "displayName": "Block", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "displayName": "Prompt", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata_0", - "displayName": "Block", - "description": "Not allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata_1", - "displayName": "Allow", - "description": "Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight", - "displayName": "Allow Third Party Suggestions In Windows Spotlight (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (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_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight_1", - "displayName": "Allow", - "description": "Third-party suggestions allowed." + "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_experience_allowwindowsspotlight", - "displayName": "Allow Windows Spotlight (User)", + "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_experience_allowwindowsspotlight_0", - "displayName": "Block", - "description": "Not allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlight_1", - "displayName": "Allow", - "description": "Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter", - "displayName": "Allow Windows Spotlight On Action Center (User)", + "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_experience_allowwindowsspotlightonactioncenter_0", - "displayName": "Block", - "description": "Not allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter_1", - "displayName": "Allow", - "description": "Allowed." + "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_experience_allowwindowsspotlightonsettings", - "displayName": "Allow Windows Spotlight On Settings (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files (User)", "options": [ { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings_0", - "displayName": "Block", - "description": "Not allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_0", + "displayName": "Disabled", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings_1", - "displayName": "Allow", - "description": "Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience", - "displayName": "Allow Windows Spotlight Windows Welcome Experience (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files (User)", "options": [ { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience_0", - "displayName": "Block", - "description": "Not allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience_1", - "displayName": "Allow", - "description": "Allowed." + "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_experience_configurewindowsspotlightonlockscreen", - "displayName": "Configure Windows Spotlight On Lock Screen (User)", + "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_experience_configurewindowsspotlightonlockscreen_0", - "displayName": "Windows spotlight disabled.", - "description": "Windows spotlight disabled." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_1", - "displayName": "Windows spotlight enabled.", - "description": "Windows spotlight enabled." + "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_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_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null }, { - "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_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages", - "displayName": "Enable delivery of organizational messages (User)", + "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_experience_enableorganizationalmessages_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", "displayName": "Disabled", - "description": "Disabled" + "description": null }, { - "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", "displayName": "Enabled", - "description": "Enabled" + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", - "displayName": "Allow Option To Show Network (User)", + "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_fileexplorer_allowoptiontoshownetwork_0", - "displayName": "Not Allowed.", - "description": "Not Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", + "description": null }, { - "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_1", - "displayName": "Allowed.", - "description": "Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc", - "displayName": "Allow Option To Show This PC (User)", + "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_fileexplorer_allowoptiontoshowthispc_0", - "displayName": "Not Allowed.", - "description": "Not Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "displayName": "Disabled", + "description": null }, { - "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_1", - "displayName": "Allowed.", - "description": "Allowed." + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "displayName": "Enabled", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations", - "displayName": "Set Allowed Folder Locations (User)", + "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_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_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "displayName": "Enable", + "description": null }, { - "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_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "displayName": "Disable", + "description": null } ] }, { - "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations", - "displayName": "Set Allowed Storage Locations (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls (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_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "displayName": "Disabled", + "description": null }, { - "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_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_fileexplorer_setallowedstoragelocations_6", - "displayName": "Sync Roots, Local Drives", - "description": "Sync Roots, Local Drives" + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", + "description": null }, { - "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_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", + "description": null } ] }, { - "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)", + "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_addsearchprovider_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering", - "displayName": "Turn on ActiveX Filtering (User)", + "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_allowactivexfiltering_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist", - "displayName": "Add-on List (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_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_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_allowautocomplete", - "displayName": "Turn on the auto-complete feature for user names and passwords on forms (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask", - "displayName": "Prompt me to save passwords (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_0", - "displayName": "False", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_1", - "displayName": "True", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning", - "displayName": "Turn on certificate address mismatch warning (User)", + "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_allowcertificateaddressmismatchwarning_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", - "displayName": "Allow deleting browsing history on exit (User)", + "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_allowdeletingbrowsinghistoryonexit_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", - "displayName": "Turn on Enhanced Protected Mode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu", - "displayName": "Let users turn on and use Enterprise Mode from the Tools menu (User)", + "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_allowenterprisemodefromtoolsmenu_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_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_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_allowenterprisemodesitelist", - "displayName": "Use the Enterprise Mode IE website list (User)", + "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_allowenterprisemodesitelist_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_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_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_allowinternetexplorer7policylist", - "displayName": "Use Policy List of Internet Explorer 7 sites (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_1", - "displayName": "Enabled", + "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_allowinternetzonetemplate", - "displayName": "Internet Zone Template (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", - "displayName": "Internet (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_2", - "displayName": "Medium Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_3", - "displayName": "Medium", + "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_allowinternetzonetemplate_iz_partnameinternetzonetemplate_5", - "displayName": "Medium High", + "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_allowinternetzonetemplate_iz_partnameinternetzonetemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate", - "displayName": "Intranet Zone Template (User)", + "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_allowintranetzonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", - "displayName": "Intranet (User)", + "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_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", - "displayName": "Medium Low", + "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_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", - "displayName": "Medium", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_5", - "displayName": "Medium High", + "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_allowintranetzonetemplate_iz_partnameintranetzonetemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", - "displayName": "Local Machine Zone Template (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing", + "displayName": "Enable MIME Sniffing (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", - "displayName": "Local Machine Zone (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_2", - "displayName": "Medium Low", + "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_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_3", - "displayName": "Medium", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_5", - "displayName": "Medium High", + "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_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", - "displayName": "Locked-Down Internet Zone Template (User)", + "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_allowlockeddowninternetzonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", - "displayName": "Locked-Down Internet (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate", - "displayName": "Locked-Down Intranet Zone Template (User)", + "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_allowlockeddownintranetzonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", - "displayName": "Locked-Down Intranet (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", - "displayName": "Locked-Down Local Machine Zone Template (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", - "displayName": "Locked-Down Local Machine Zone (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_2", - "displayName": "Medium Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_3", - "displayName": "Medium", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", - "displayName": "Locked-Down Restricted Sites Zone Template (User)", + "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_allowlockeddownrestrictedsiteszonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", - "displayName": "Locked-Down Restricted Sites (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "displayName": "Prompt", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode", - "displayName": "Allow \"Save Target As\" in Internet Explorer mode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_1", - "displayName": "Enabled", + "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_allowsitetozoneassignmentlist", - "displayName": "Site to Zone Assignment List (User)", - "options": [ + }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_0", - "displayName": "Disabled", + "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_allowsitetozoneassignmentlist_1", - "displayName": "Enabled", + "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_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)", + "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_allowslockeddowntrustedsiteszonetemplate_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", - "displayName": "Locked-Down Trusted Sites (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid", - "displayName": "Allow software to run or install even if the signature is invalid (User)", + "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_allowsoftwarewhensignatureisinvalid_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", - "displayName": "Restricted Sites Zone Template (User)", + "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_allowsrestrictedsiteszonetemplate_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_1", - "displayName": "Enabled", + "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_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", - "displayName": "Restricted Sites (User)", + "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_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_2", - "displayName": "Medium Low", + "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_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_3", - "displayName": "Medium", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", - "displayName": "Turn on Suggested Sites (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker", + "displayName": "Use Pop-up Blocker (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", - "displayName": "Trusted Sites Zone Template (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", - "displayName": "Trusted Sites (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_1", - "displayName": "Low", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_2", - "displayName": "Medium Low", + "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_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_3", - "displayName": "Medium", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_5", - "displayName": "Medium High", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_4", - "displayName": "High", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", - "displayName": "Check for server certificate revocation (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", - "displayName": "Check for signatures on downloaded programs (User)", + "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_checksignaturesondownloadedprograms_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel", - "displayName": "Configure which channel of Microsoft Edge to use for opening redirected sites (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", - "displayName": "First choice (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_0", - "displayName": "Microsoft Edge version 45 or earlier", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", - "displayName": "Second choice (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads", + "displayName": "Allow font downloads (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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_2", - "displayName": "Microsoft Edge Beta version 77 or later", + "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_configureedgeredirectchannel_neededgebrowser2_3", - "displayName": "Microsoft Edge Dev version 77 or later", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_4", - "displayName": "Microsoft Edge Canary version 77 or later", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_0", - "displayName": "Microsoft Edge version 45 or earlier", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", - "displayName": "Third choice (User)", + "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_configureedgeredirectchannel_neededgebrowser3_", - "displayName": "", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_1", - "displayName": "Microsoft Edge Stable", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_2", - "displayName": "Microsoft Edge Beta version 77 or later", + "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_configureedgeredirectchannel_neededgebrowser3_3", - "displayName": "Microsoft Edge Dev version 77 or later", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_4", - "displayName": "Microsoft Edge Canary version 77 or later", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_0", - "displayName": "Microsoft Edge version 45 or earlier", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", - "displayName": "Internet Explorer Processes (User)", + "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_consistentmimehandlinginternetexplorerprocesses_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload", - "displayName": "Turn off automatic download of the ActiveX VersionList (User)", + "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_disableactivexversionlistautodownload_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", - "displayName": "Prevent bypassing SmartScreen Filter warnings (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview", - "displayName": "Turn off Compatibility View (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", - "displayName": "Disable \"Configuring History\" (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation", - "displayName": "Prevent participation in the Customer Experience Improvement Program (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites", - "displayName": "Prevent deleting websites that the user has visited (User)", + "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_disabledeletinguservisitedwebsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading", - "displayName": "Prevent downloading of enclosures (User)", + "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_disableenclosuredownloading_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", - "displayName": "Turn off encryption support (User)", + "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_disableencryptionsupport_0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", - "displayName": "Secure Protocol combinations (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_160", - "displayName": "Use SSL 3.0 and TLS 1.0", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_512", - "displayName": "Only use TLS 1.1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_520", - "displayName": "Use SSL 2.0 and TLS 1.1", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_544", - "displayName": "Use SSL 3.0 and TLS 1.1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_640", - "displayName": "Use TLS 1.0 and TLS 1.1", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", "description": null - }, + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions", + "displayName": "Logon options (User)", + "options": [ { - "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2048", - "displayName": "Only use TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_1", + "displayName": "Enabled", "description": null - }, + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", + "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2056", - "displayName": "Use SSL 2.0 and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2080", - "displayName": "Use SSL 3.0 and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2176", - "displayName": "Use TLS 1.0 and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "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_disableencryptionsupport_advanced_wininetprotocoloptions_2184", - "displayName": "Use SSL 2.0, TLS 1.0, and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_0", + "displayName": "Disabled", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_2216", - "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2560", - "displayName": "Use TLS 1.1 and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "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", + "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. (User)", + "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2592", - "displayName": "Use SSL 3.0, TLS 1.1, and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_jscriptreplacement_0", + "displayName": "Disabled", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_2688", - "displayName": "Use TLS 1.0, TLS 1.1, and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_0", + "displayName": "Disabled", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_2720", - "displayName": "Use SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_0", + "displayName": "Disabled", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_8192", - "displayName": "Only use TLS 1.3", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10240", - "displayName": "Use TLS 1.2 and TLS 1.3", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", "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", + "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_disableencryptionsupport_advanced_wininetprotocoloptions_10880", - "displayName": "Use TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync", - "displayName": "Turn off background synchronization for feeds and Web Slices (User)", + "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_disablefeedsbackgroundsync_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", - "displayName": "Prevent running First Run wizard (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", - "displayName": "Select your choice (User)", + "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_disablefirstrunwizard_firstrunoptions_1", - "displayName": "Go directly to home page", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_2", - "displayName": "Go directly to \"Welcome To IE\" page", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature", - "displayName": "Turn off the flip ahead with page prediction feature (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation", - "displayName": "Turn off browser geolocation (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_1", - "displayName": "Enabled", + "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_disablehomepagechange", - "displayName": "Disable changing home page settings (User)", + "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_disablehomepagechange_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_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)", + "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_disablehtmlapplication_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_1", - "displayName": "Enabled", + "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_disableignoringcertificateerrors", - "displayName": "Prevent ignoring certificate errors (User)", + "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_disableignoringcertificateerrors_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", - "displayName": "Turn off InPrivate Browsing (User)", + "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_disableinprivatebrowsing_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_1", - "displayName": "Enabled", + "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_disableinternetexplorerapp", - "displayName": "[Deprecated] Disable Internet Explorer 11 as a standalone browser (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2", - "displayName": "Disable Internet Explorer 11 as a standalone browser (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions", - "displayName": "Notify that Internet Explorer 11 browser is disabled (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (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", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_2", - "displayName": "Once per user", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange", - "displayName": "Prevent changing proxy settings (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", - "displayName": "Prevent changing the default search provider (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", - "displayName": "Disable changing secondary home page settings (User)", + "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_disablesecondaryhomepagechange_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_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)", + "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_disablesecuritysettingscheck_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete", - "displayName": "Turn off the auto-complete feature for web addresses (User)", + "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_disablewebaddressautocomplete_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_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)", + "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_donotallowactivexcontrolsinprotectedmode_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", - "displayName": "Enabled", + "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_donotblockoutdatedactivexcontrols", - "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_1", - "displayName": "Enabled", + "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_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode", - "displayName": "Enable global window list in Internet Explorer mode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites", - "displayName": "Intranet Sites: Include all local (intranet) sites not listed in other zones (User)", + "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_includealllocalsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", - "displayName": "Intranet Sites: Include all network paths (UNCs) (User)", + "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_includeallnetworkpaths_0", - "displayName": "Disabled", + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_1", - "displayName": "Enabled", + "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_internetzoneallowaccesstodatasources", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", + "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_internetzoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols", "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "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_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "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_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", - "displayName": "Allow paste operations via script (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles", - "displayName": "Allow drag and drop or copy and paste files (User)", + "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_internetzoneallowdraganddropcopyandpastefiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_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)", + "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_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_internetzoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_internetzoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", - "displayName": "XAML Files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_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)", + "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_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_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)", + "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_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "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_internetzoneallowonlyapproveddomainstousetdcactivexcontrol", - "displayName": "Allow only approved domains to use the TDC ActiveX control (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", - "displayName": "Disable", + "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_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", - "displayName": "Allow scripting of Internet Explorer WebBrowser controls (User)", + "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_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", - "displayName": "Internet Explorer web browser control (User)", + "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_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "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_internetzoneallowscriptinitiatedwindows", - "displayName": "Allow script-initiated windows without size or position constraints (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_3", - "displayName": "Disable", + "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_internetzoneallowscriptlets", - "displayName": "Allow scriptlets (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_internetzoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_3", + "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_internetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "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_internetzoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript", - "displayName": "Allow updates to status bar via script (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103", - "displayName": "Status bar updates via script (User)", + "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_internetzoneallowupdatestostatusbarviascript_iz_partname2103_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_3", + "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_internetzoneallowvbscripttorunininternetexplorer", - "displayName": "Allow VBScript to run in Internet Explorer (User)", + "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_internetzoneallowvbscripttorunininternetexplorer_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c", - "displayName": "Allow VBScript to run in Internet Explorer (User)", + "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_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "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_internetzonedonotrunantimalwareagainstactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_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)", + "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_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "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_internetzonedownloadsignedactivexcontrols", - "displayName": "Download signed ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", - "displayName": "Download signed ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", - "displayName": "Download unsigned ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409", - "displayName": "Turn on Cross-Site Scripting (XSS) Filter (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows", - "displayName": "Enable dragging of content from different domains across windows (User)", + "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_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_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)", + "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_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "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_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows", - "displayName": "Enable dragging of content from different domains within a window (User)", + "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_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_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)", + "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_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "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_internetzoneenablemimesniffing", - "displayName": "Enable MIME Sniffing (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", - "displayName": "Enable MIME Sniffing (User)", + "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_internetzoneenablemimesniffing_iz_partname2100_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_3", + "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_internetzoneenableprotectedmode", - "displayName": "Turn on Protected Mode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500", - "displayName": "Protected Mode (User)", + "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_internetzoneenableprotectedmode_iz_partname2500_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_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)", + "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_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", - "displayName": "Java permissions (User)", + "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_internetzonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe", - "displayName": "Launching applications and files in an IFRAME (User)", + "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_internetzonelaunchingapplicationsandfilesiniframe_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804", - "displayName": "Launching applications and files in an IFRAME (User)", + "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_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", - "displayName": "Logon options (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", - "displayName": "Logon options (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", - "displayName": "Anonymous logon", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_131072", - "displayName": "Automatic logon only in Intranet zone", + "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_internetzonelogonoptions_iz_partname1a00_0", - "displayName": "Automatic logon with current username and password", + "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_internetzonelogonoptions_iz_partname1a00_65536", - "displayName": "Prompt for user name and password", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_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)", + "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_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_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)", + "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_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles", - "displayName": "Show security warning for potentially unsafe files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", - "displayName": "Launching programs and unsafe files (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", - "displayName": "Prompt", + "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_internetzoneusepopupblocker", - "displayName": "Use Pop-up Blocker (User)", + "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_internetzoneusepopupblocker_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", - "displayName": "Use Pop-up Blocker (User)", + "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_internetzoneusepopupblocker_iz_partname1809_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", + "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_intranetzoneallowaccesstodatasources", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406", + "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_intranetzoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "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_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "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_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites", + "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_intranetzoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101", + "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_intranetzoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents", + "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_intranetzoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004", + "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_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets", "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie", "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence", "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_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", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols", + "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_intranetzoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "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_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_65536", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_65536", "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_131072", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_131072", "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_196608", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_196608", "displayName": "Low safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_8388608", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_8388608", "displayName": "Custom", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_0", "displayName": "Disable Java", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes", + "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_intranetzonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607", + "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_intranetzonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_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", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406", + "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_localmachinezoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "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_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "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_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites", + "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_localmachinezoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101", + "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_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents", + "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_localmachinezoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004", + "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_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets", "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_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", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols", + "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_localmachinezoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "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_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_65536", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_65536", "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_131072", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_131072", "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_196608", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_196608", "displayName": "Low safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_8388608", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_8388608", "displayName": "Custom", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_0", "displayName": "Disable Java", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes", + "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_localmachinezonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607", + "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_localmachinezonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_1", + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "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_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", + "displayName": "New tab behavior (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_0", + "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_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", + "displayName": "Prevent managing SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", + "displayName": "Select SmartScreen Filter mode (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", + "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_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_lockeddowninternetzoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "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_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_1", + "displayName": "Enabled", "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)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_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)", + "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_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", + "displayName": "Allow active scripting (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400", + "displayName": "Allow active scripting (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets", - "displayName": "Allow scriptlets (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "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_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors", + "displayName": "Allow binary and script behaviors (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "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_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_3", + "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_lockeddowninternetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "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_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_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)", + "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_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions", - "displayName": "Java permissions (User)", + "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_lockeddowninternetzonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_lockeddowninternetzonejavapermissions_iz_partname1c00_65536", - "displayName": "High safety", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_131072", - "displayName": "Medium safety", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "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_lockeddowninternetzonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "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_lockeddowninternetzonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", + "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions", - "displayName": "Java permissions (User)", + "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_lockeddownintranetjavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh", + "displayName": "Allow META REFRESH (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608", + "displayName": "Allow META REFRESH (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "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_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "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_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "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_lockeddownintranetzoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_lockeddownintranetzoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", "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)", + "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_lockeddownintranetzoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_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)", + "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_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", "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)", + "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_lockeddownintranetzoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_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)", + "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_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_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)", + "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_lockeddownintranetzoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "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_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_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)", + "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_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_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)", + "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_lockeddownlocalmachinezoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "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_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "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_lockeddownlocalmachinezoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_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)", + "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_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_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)", + "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_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_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)", + "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_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_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)", + "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_lockeddownlocalmachinezoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", + "displayName": "Enable MIME Sniffing (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "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_lockeddownlocalmachinezoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "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_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols", + "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_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "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_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_65536", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_65536", "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_131072", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_131072", "displayName": "Medium safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_196608", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_196608", "displayName": "Low safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_8388608", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_8388608", "displayName": "Custom", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_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)", + "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_lockeddownlocalmachinezonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "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_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "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_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", + "displayName": "Run ActiveX controls and plugins (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "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_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "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_lockeddownrestrictedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_lockeddownrestrictedsiteszoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_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)", + "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_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_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)", + "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_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", + "displayName": "Scripting of Java applets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", + "displayName": "Scripting of Java applets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets", - "displayName": "Allow scriptlets (User)", + "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_lockeddownrestrictedsiteszoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", + "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_lockeddownrestrictedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", + "displayName": "Turn on Protected Mode (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", + "displayName": "Protected Mode (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", + "displayName": "Use Pop-up Blocker (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_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)", + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "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_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "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_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources", "displayName": "Access data sources across domains (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406", + "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_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", "displayName": "Automatic prompting for ActiveX controls (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", "displayName": "Automatic prompting for file downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "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_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", "displayName": "Allow font downloads (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites", + "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_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "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_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents", + "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_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "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_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets", "displayName": "Allow scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", "displayName": "Scriptlets (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", "displayName": "Turn on SmartScreen Filter scan (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", "displayName": "Use SmartScreen Filter (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", "displayName": "Disable", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", "displayName": "Userdata persistence (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_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)", + "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_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_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)", + "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_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", "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)", + "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_lockeddowntrustedsiteszonejavapermissions_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage", - "displayName": "Specify default behavior for a new tab (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions", + "displayName": "Logon options (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", - "displayName": "New tab behavior (User)", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options (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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_2", - "displayName": "New tab page", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", - "displayName": "Prevent managing SmartScreen Filter (User)", + "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_preventmanagingsmartscreenfilter_0", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_1", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", - "displayName": "Select SmartScreen Filter mode (User)", + "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_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_0", - "displayName": "Off", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", "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", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", - "displayName": "Enabled", + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", "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_kioskbrowser_blockedurlexceptions", + "displayName": "Blocked Url Exceptions (User)", + "options": 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_kioskbrowser_blockedurls", + "displayName": "Blocked Urls (User)", + "options": 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_kioskbrowser_defaulturl", + "displayName": "Default URL (User)", + "options": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses", - "displayName": "Internet Explorer Processes (User)", + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton", + "displayName": "Enable End Session Button (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_0", - "displayName": "Disabled", - "description": null + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_1", - "displayName": "Enabled", - "description": null + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton", + "displayName": "Enable Home Button (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_0", - "displayName": "Disabled", - "description": null + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton_1", + "displayName": "Enable", + "description": "Enable" }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_1", - "displayName": "Enabled", - "description": null + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton_0", + "displayName": "Disable", + "description": "Disable" } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons", + "displayName": "Enable Navigation Buttons (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_1", "displayName": "Enable", - "description": null + "description": "Enable" }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_0", "displayName": "Disable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", - "description": null + "description": "Disable" } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", - "displayName": "Allow active scripting (User)", + "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_internetexplorer_restrictedsiteszoneallowactivescripting_0", + "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_internetexplorer_restrictedsiteszoneallowactivescripting_1", + "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_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_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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "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_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_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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors", - "displayName": "Allow binary and script behaviors (User)", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000", - "displayName": "Allow Binary and Script Behaviors (User)", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_65536", - "displayName": "Administrator approved", + "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_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript", - "displayName": "Allow cut, copy or paste operations from the clipboard via script (User)", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript_0", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript_1", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407", - "displayName": "Allow paste operations via script (User)", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles", - "displayName": "Allow drag and drop or copy and paste files (User)", + "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_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", + "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_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_1", + "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_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_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_internetexplorer_restrictedsiteszoneallowfiledownloads", - "displayName": "Allow file downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowfiledownloads_0", + "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_internetexplorer_restrictedsiteszoneallowfiledownloads_1", + "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_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803", - "displayName": "Allow file downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_0", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_1", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszoneallowlessprivilegedsites", - "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "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_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", + "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_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", + "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_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_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_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", - "displayName": "Allow loading of XAML files (User)", + "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_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", + "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_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_1", + "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_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_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_internetexplorer_restrictedsiteszoneallowmetarefresh", - "displayName": "Allow META REFRESH (User)", + "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_internetexplorer_restrictedsiteszoneallowmetarefresh_0", + "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_internetexplorer_restrictedsiteszoneallowmetarefresh_1", + "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_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_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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_0", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols", - "displayName": "Allow only approved domains to use ActiveX controls without prompt (User)", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_1", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b", - "displayName": "Only allow approved domains to use ActiveX controls without prompt (User)", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol", - "displayName": "Allow only approved domains to use the TDC ActiveX control (User)", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c", - "displayName": "Only allow approved domains to use the TDC ActiveX control (User)", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols", - "displayName": "Allow scripting of Internet Explorer WebBrowser controls (User)", + "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_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "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_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "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_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", - "displayName": "Internet Explorer web browser control (User)", + "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_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows", - "displayName": "Allow script-initiated windows without size or position constraints (User)", + "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_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_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)", + "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_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", - "displayName": "Allow scriptlets (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue", + "displayName": "Set application locale (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "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_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + "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_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "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_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript", - "displayName": "Allow updates to status bar via script (User)", + "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_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103", - "displayName": "Status bar updates via script (User)", + "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_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "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_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", - "displayName": "Disabled", + "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_internetexplorer_restrictedsiteszoneallowuserdatapersistence_1", - "displayName": "Enabled", + "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_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "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_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer", - "displayName": "Allow VBScript to run in Internet Explorer (User)", + "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_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c", - "displayName": "Allow VBScript to run in Internet Explorer (User)", + "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_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled", + "displayName": "Enable guest mode (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_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)", + "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_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", - "displayName": "Download signed ActiveX controls (User)", + "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_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", - "displayName": "Download signed ActiveX controls (User)", + "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_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", - "displayName": "Download unsigned ActiveX controls (User)", + "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_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", - "displayName": "Download unsigned ActiveX controls (User)", + "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_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", - "displayName": "Turn on Cross-Site Scripting Filter (User)", + "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 (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409", - "displayName": "Turn on Cross-Site Scripting (XSS) Filter (User)", + "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_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows", - "displayName": "Enable dragging of content from different domains across windows (User)", + "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_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_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)", + "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_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows", - "displayName": "Enable dragging of content from different domains within a window (User)", + "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_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_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)", + "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_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", - "displayName": "Enable MIME Sniffing (User)", + "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_internetexplorer_restrictedsiteszoneenablemimesniffing_0", - "displayName": "Disabled", + "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_internetexplorer_restrictedsiteszoneenablemimesniffing_1", - "displayName": "Enabled", + "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_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", - "displayName": "Enable MIME Sniffing (User)", + "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_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver", - "displayName": "Include local path when user is uploading files to a server (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots", + "displayName": "Disable taking screenshots (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_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)", + "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_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "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_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_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)", + "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_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", - "displayName": "Java permissions (User)", + "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_internetexplorer_restrictedsiteszonejavapermissions_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (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", + "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_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "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_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "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_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "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_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe", - "displayName": "Launching applications and files in an IFRAME (User)", + "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_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804", - "displayName": "Launching applications and files in an IFRAME (User)", + "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_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", - "displayName": "Logon options (User)", + "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_internetexplorer_restrictedsiteszonelogonoptions_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", - "displayName": "Logon options (User)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_65536", - "displayName": "Prompt for user name and password", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "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_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "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_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", - "displayName": "Run ActiveX controls and plugins (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled", + "displayName": "Enable favorites bar (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_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)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_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)", + "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_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting", - "displayName": "Script ActiveX controls marked safe for scripting (User)", + "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_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405", - "displayName": "Script ActiveX controls marked safe for scripting (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch (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", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", - "displayName": "Scripting of Java applets (User)", + "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_internetexplorer_restrictedsiteszonescriptingofjavaapplets_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", - "displayName": "Scripting of Java applets (User)", + "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_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", - "displayName": "Enable", + "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_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", - "displayName": "Disable", + "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_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", - "displayName": "Prompt", + "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_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles", - "displayName": "Show security warning for potentially unsafe files (User)", + "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_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", - "displayName": "Launching programs and unsafe files (User)", + "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_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", - "displayName": "Turn on Protected Mode (User)", + "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_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", - "displayName": "Protected Mode (User)", + "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_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", - "displayName": "Use Pop-up Blocker (User)", + "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_internetexplorer_restrictedsiteszoneusepopupblocker_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", - "displayName": "Use Pop-up Blocker (User)", + "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_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", - "displayName": "Internet Explorer Processes (User)", + "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_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", - "displayName": "Internet Explorer Processes (User)", + "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_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist", - "displayName": "Restrict search providers to a specific list (User)", + "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_internetexplorer_searchproviderlist_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_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)", + "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_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_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)", + "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_internetexplorer_specifyuseofactivexinstallerservice_0", - "displayName": "Disabled", + "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_internetexplorer_specifyuseofactivexinstallerservice_1", - "displayName": "Enabled", + "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_internetexplorer_trustedsiteszoneallowaccesstodatasources", - "displayName": "Access data sources across domains (User)", + "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_internetexplorer_trustedsiteszoneallowaccesstodatasources_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406", - "displayName": "Access data sources across domains (User)", + "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_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", - "displayName": "Prompt", + "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_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", - "displayName": "Automatic prompting for ActiveX controls (User)", + "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_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", - "displayName": "Automatic prompting for file downloads (User)", + "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_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", - "displayName": "Automatic prompting for file downloads (User)", + "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_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", - "displayName": "Allow font downloads (User)", + "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_internetexplorer_trustedsiteszoneallowfontdownloads_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", - "displayName": "Allow font downloads (User)", + "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_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", - "displayName": "Prompt", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_1", + "displayName": "Enabled", "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)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions", + "displayName": "Enable network prediction (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_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)", + "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_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", - "displayName": "Enable", + "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_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", - "displayName": "Prompt", + "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_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents", - "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "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_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_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_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_internetexplorer_trustedsiteszoneallowscriptlets", - "displayName": "Allow scriptlets (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled", + "displayName": "Enable Proactive Authentication (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", - "displayName": "Scriptlets (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled", + "displayName": "Enable full-tab promotional content (deprecated) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_1", + "displayName": "Enabled", "description": null } ] }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", - "displayName": "Turn on SmartScreen Filter scan (User)", + { + "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_internetexplorer_trustedsiteszoneallowsmartscreenie_0", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_1", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", - "displayName": "Use SmartScreen Filter (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed", + "displayName": "Allow QUIC protocol (User)", "options": [ { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", - "displayName": "Enable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", - "displayName": "Disable", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", - "displayName": "Userdata persistence (User)", + "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_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", + "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_internetexplorer_trustedsiteszoneallowuserdatapersistence_1", + "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_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", - "displayName": "Userdata persistence (User)", + "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_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", - "displayName": "Enable", + "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_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_3", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols", - "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", - "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", - "displayName": "Enable", + "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_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_1", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", - "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", - "displayName": "Prompt", + "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_internetexplorer_trustedsiteszonejavapermissions", - "displayName": "Java permissions (User)", + "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_internetexplorer_trustedsiteszonejavapermissions_0", + "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_internetexplorer_trustedsiteszonejavapermissions_1", + "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_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", - "displayName": "Java permissions (User)", + "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_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_65536", - "displayName": "High safety", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_131072", - "displayName": "Medium safety", + "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_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_196608", - "displayName": "Low safety", + "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_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", - "displayName": "Custom", + "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_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", - "displayName": "Disable Java", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes", - "displayName": "Navigate windows and frames across different domains (User)", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes_1", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607", - "displayName": "Navigate windows and frames across different domains (User)", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", - "displayName": "Enable", - "description": null - }, - { - "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", - "displayName": "Disable", + "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_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_1", - "displayName": "Prompt", + "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_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)", + "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_kioskbrowser_enableendsessionbutton_1", - "displayName": "Enable", - "description": "Enable" + "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_kioskbrowser_enableendsessionbutton_0", - "displayName": "Disable", - "description": "Disable" + "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_kioskbrowser_enablehomebutton", - "displayName": "Enable Home Button (User)", + "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_kioskbrowser_enablehomebutton_1", - "displayName": "Enable", - "description": "Enable" + "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_kioskbrowser_enablehomebutton_0", - "displayName": "Disable", - "description": "Disable" + "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_kioskbrowser_enablenavigationbuttons", - "displayName": "Enable Navigation Buttons (User)", + "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_kioskbrowser_enablenavigationbuttons_1", - "displayName": "Enable", - "description": "Enable" + "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_kioskbrowser_enablenavigationbuttons_0", - "displayName": "Disable", - "description": "Disable" + "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_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)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_1", + "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_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)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1_1", + "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_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)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1", - "displayName": "Disable HTTP fallback for SIP connection (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1_0", - "displayName": "Disabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1_1", - "displayName": "Enabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1", - "displayName": "Require logon credentials (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1", - "displayName": "Disable server version check (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1", - "displayName": "Enable using BITS to download Address Book Service files (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1", - "displayName": "Configure SIP security mode (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1", - "displayName": "Global Address Book Download Initial Delay (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_l_galdownloadinitialdelay_value", - "displayName": "Maximum possible number of minutes to delay download: (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1", - "displayName": "Prevent users from running Microsoft Lync (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1", - "displayName": "Allow storage of user passwords (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1", - "displayName": "Configure SIP compression mode (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression", - "displayName": "Configure SIP compression mode (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_0", - "displayName": "Always disabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_1", - "displayName": "Always enabled", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_2", - "displayName": "Based on adaptor speed (default)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_3", - "displayName": "Based on ping round-trip time", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1", - "displayName": "Trusted Domain List (User)", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_0", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_1", + "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_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_l_trustmodeldata_value", - "displayName": "Trusted Domains (comma separated list): (User)", + "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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder", - "displayName": "Configure the location of the browser executable folder (User)", + "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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_0", + "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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_1", + "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_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", + "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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference", - "displayName": "Set the release channel search order preference (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~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_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_0", + "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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_1", + "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_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~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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_key", - "displayName": "Name", - "options": 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_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_value", - "displayName": "Value", + "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_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol", - "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "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_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_0", + "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_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_1", + "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_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", - "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "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_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", + "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_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", - "displayName": "Disable communication with the Experimentation and Configuration Service", + "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_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled", - "displayName": "Controls whether unload event handlers can be disabled. (User)", + "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_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_0", - "displayName": "Disabled", + "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_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_1", - "displayName": "Enabled", + "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_webview2v2~policy~microsoft_edge_webview2_httpallowlist", - "displayName": "HTTP Allowlist (User)", + "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_webview2v2~policy~microsoft_edge_webview2_httpallowlist_0", + "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_webview2v2~policy~microsoft_edge_webview2_httpallowlist_1", + "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_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", + "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_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed", - "displayName": "Allows enabling the feature NewBaseUrlInheritanceBehavior (User)", + "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_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_0", + "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_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_1", + "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_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list", - "displayName": "Enable built-in PDF reader powered by Adobe Acrobat for WebView2 (User)", + "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_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_0", + "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_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_1", + "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_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)", + "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_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_0", + "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_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_1", + "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_allowdeletingbrowserhistory", - "displayName": "Enable deleting browser and download history (User)", + "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_allowdeletingbrowserhistory_0", + "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_allowdeletingbrowserhistory_1", + "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_allowfileselectiondialogs", - "displayName": "Allow file selection dialogs (User)", + "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_allowfileselectiondialogs_0", + "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_allowfileselectiondialogs_1", + "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_alwaysopenpdfexternally", - "displayName": "Always open PDF files externally (User)", + "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_alwaysopenpdfexternally_0", + "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_alwaysopenpdfexternally_1", + "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_applicationlocalevalue", - "displayName": "Set application locale (User)", + "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_applicationlocalevalue_0", + "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_applicationlocalevalue_1", + "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_applicationlocalevalue_applicationlocalevalue", - "displayName": "Application locale (User)", + "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_audiocaptureallowed", - "displayName": "Allow or block audio capture (User)", + "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_audiocaptureallowed_0", + "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_audiocaptureallowed_1", + "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_audiocaptureallowedurls", - "displayName": "Sites that can access audio capture devices without requesting permission (User)", + "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_audiocaptureallowedurls_0", + "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_audiocaptureallowedurls_1", + "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_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)", + "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_autofilladdressenabled_0", + "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_autofilladdressenabled_1", + "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_autofillcreditcardenabled", - "displayName": "Enable AutoFill for payment instruments (User)", + "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_autofillcreditcardenabled_0", + "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_autofillcreditcardenabled_1", + "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_autoimportatfirstrun", - "displayName": "Automatically import another browser's data and settings at first run (User)", + "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_autoimportatfirstrun_0", + "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_autoimportatfirstrun_1", + "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_autoimportatfirstrun_autoimportatfirstrun", - "displayName": "Automatically import another browser's data and settings at first run (User)", + "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_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", + "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_autoimportatfirstrun_autoimportatfirstrun_2", - "displayName": "Automatically imports all supported datatypes and settings from Google Chrome", + "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_autoimportatfirstrun_autoimportatfirstrun_3", - "displayName": "Automatically imports all supported datatypes and settings from Safari", + "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_autoimportatfirstrun_autoimportatfirstrun_4", - "displayName": "Disables automatic import, and the import section of the first-run experience is skipped", + "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_backgroundmodeenabled", - "displayName": "Continue running background apps after Microsoft Edge closes (User)", + "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_backgroundmodeenabled_0", + "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_backgroundmodeenabled_1", + "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_blockthirdpartycookies", - "displayName": "Block third party cookies (User)", + "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_blockthirdpartycookies_0", - "displayName": "Disabled", + "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_blockthirdpartycookies_1", - "displayName": "Enabled", + "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_browseraddprofileenabled", - "displayName": "Enable profile creation from the Identity flyout menu or the Settings page (User)", + "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_browseraddprofileenabled_0", + "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_browseraddprofileenabled_1", + "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_browserguestmodeenabled", - "displayName": "Enable guest mode (User)", + "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_browserguestmodeenabled_0", + "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_browserguestmodeenabled_1", + "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_browsernetworktimequeriesenabled", - "displayName": "Allow queries to a Browser Network Time service (User)", + "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_browsernetworktimequeriesenabled_0", + "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_browsernetworktimequeriesenabled_1", + "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_browsersignin", - "displayName": "Browser sign-in settings (User)", + "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_browsersignin_0", + "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_browsersignin_1", + "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_browsersignin_browsersignin", - "displayName": "Browser sign-in settings (User)", + "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_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", + "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_browsersignin_browsersignin_2", - "displayName": "Force users to sign-in to use the browser", + "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_builtindnsclientenabled", - "displayName": "Use built-in DNS client (User)", + "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_builtindnsclientenabled_0", + "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_builtindnsclientenabled_1", + "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_certificatetransparencyenforcementdisabledforcas", - "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "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_certificatetransparencyenforcementdisabledforcas_0", + "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_certificatetransparencyenforcementdisabledforcas_1", + "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_certificatetransparencyenforcementdisabledforcas_certificatetransparencyenforcementdisabledforcasdesc", - "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "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_certificatetransparencyenforcementdisabledforlegacycas", - "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (User)", + "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_certificatetransparencyenforcementdisabledforlegacycas_0", + "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_certificatetransparencyenforcementdisabledforlegacycas_1", + "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_certificatetransparencyenforcementdisabledforlegacycas_certificatetransparencyenforcementdisabledforlegacycasdesc", - "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (User)", + "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_certificatetransparencyenforcementdisabledforurls", - "displayName": "Disable Certificate Transparency enforcement for specific URLs (User)", + "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_certificatetransparencyenforcementdisabledforurls_0", + "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_certificatetransparencyenforcementdisabledforurls_1", + "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_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)", + "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_componentupdatesenabled_0", + "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_componentupdatesenabled_1", + "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_configuredonottrack", - "displayName": "Configure Do Not Track (User)", + "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_configuredonottrack_0", + "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_configuredonottrack_1", + "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_configureonlinetexttospeech", - "displayName": "Configure Online Text To Speech (User)", + "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_configureonlinetexttospeech_0", + "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_configureonlinetexttospeech_1", + "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_developertoolsavailability", - "displayName": "Control where developer tools can be used (User)", + "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_developertoolsavailability_0", + "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_developertoolsavailability_1", + "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_developertoolsavailability_developertoolsavailability", - "displayName": "Control where developer tools can be used (User)", + "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_developertoolsavailability_developertoolsavailability_0", - "displayName": "Block the developer tools on extensions installed by enterprise policy, allow in other contexts", + "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_developertoolsavailability_developertoolsavailability_1", - "displayName": "Allow using the developer tools", + "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_developertoolsavailability_developertoolsavailability_2", - "displayName": "Don't allow using the developer tools", + "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_disable3dapis", - "displayName": "Disable support for 3D graphics APIs (User)", + "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_disable3dapis_0", + "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_disable3dapis_1", + "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_disablescreenshots", - "displayName": "Disable taking screenshots (User)", + "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_disablescreenshots_0", + "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_disablescreenshots_1", + "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_diskcachedir", - "displayName": "Set disk cache directory (User)", + "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_diskcachedir_0", + "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_diskcachedir_1", + "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_diskcachedir_diskcachedir", - "displayName": "Set disk cache directory (User)", + "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_diskcachesize", - "displayName": "Set disk cache size, in bytes (User)", + "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_diskcachesize_0", + "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_diskcachesize_1", + "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_diskcachesize_diskcachesize", - "displayName": "Set disk cache size: (User)", + "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_downloaddirectory", - "displayName": "Set download directory (User)", + "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_downloaddirectory_0", + "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_downloaddirectory_1", + "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_downloaddirectory_downloaddirectory", - "displayName": "Set download directory (User)", + "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_downloadrestrictions", - "displayName": "Allow download restrictions (User)", + "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_downloadrestrictions_0", + "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_downloadrestrictions_1", + "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_downloadrestrictions_downloadrestrictions", - "displayName": "Download restrictions (User)", + "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_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", + "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_downloadrestrictions_downloadrestrictions_3", - "displayName": "Block all downloads", + "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_editfavoritesenabled", - "displayName": "Allows users to edit favorites (User)", + "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_editfavoritesenabled_0", - "displayName": "Disabled", + "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_editfavoritesenabled_1", - "displayName": "Enabled", + "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_enabledeprecatedwebplatformfeatures", - "displayName": "Re-enable deprecated web platform features for a limited time (User)", + "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_enabledeprecatedwebplatformfeatures_0", + "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_enabledeprecatedwebplatformfeatures_1", + "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_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)", + "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_enabledomainactionsdownload_0", - "displayName": "Disabled", + "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_enabledomainactionsdownload_1", - "displayName": "Enabled", + "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_enableonlinerevocationchecks", - "displayName": "Enable online OCSP/CRL checks (User)", + "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_enableonlinerevocationchecks_0", + "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_enableonlinerevocationchecks_1", + "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_experimentationandconfigurationservicecontrol", - "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "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_experimentationandconfigurationservicecontrol_0", - "displayName": "Disabled", + "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_experimentationandconfigurationservicecontrol_1", - "displayName": "Enabled", + "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_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", - "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "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_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", + "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_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", - "displayName": "Disable communication with the Experimentation and Configuration Service", + "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_favoritesbarenabled", - "displayName": "Enable favorites bar (User)", + "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_favoritesbarenabled_0", - "displayName": "Disabled", + "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_favoritesbarenabled_1", - "displayName": "Enabled", + "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_forcebingsafesearch", - "displayName": "Enforce Bing SafeSearch (User)", + "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_forcebingsafesearch_0", + "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_forcebingsafesearch_1", + "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_forcebingsafesearch_forcebingsafesearch", - "displayName": "Enforce Bing SafeSearch (User)", + "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_forcebingsafesearch_forcebingsafesearch_0", - "displayName": "Don't configure search restrictions in Bing", + "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_forcebingsafesearch_forcebingsafesearch_1", - "displayName": "Configure moderate search restrictions in Bing", + "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_forcebingsafesearch_forcebingsafesearch_2", - "displayName": "Configure strict search restrictions in Bing", + "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_forceephemeralprofiles", - "displayName": "Enable use of ephemeral profiles (User)", + "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_forceephemeralprofiles_0", + "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_forceephemeralprofiles_1", + "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_forcegooglesafesearch", - "displayName": "Enforce Google SafeSearch (User)", + "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_forcegooglesafesearch_0", - "displayName": "Disabled", + "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_forcegooglesafesearch_1", - "displayName": "Enabled", + "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_forceyoutuberestrict", - "displayName": "Force minimum YouTube Restricted Mode (User)", + "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_forceyoutuberestrict_0", + "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_forceyoutuberestrict_1", + "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_forceyoutuberestrict_forceyoutuberestrict", - "displayName": "Force minimum YouTube Restricted Mode (User)", + "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_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", + "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_forceyoutuberestrict_forceyoutuberestrict_2", - "displayName": "Enforce Strict Restricted Mode for YouTube", + "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_fullscreenallowed", - "displayName": "Allow full screen mode (User)", + "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_fullscreenallowed_0", + "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_fullscreenallowed_1", + "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_hardwareaccelerationmodeenabled", - "displayName": "Use hardware acceleration when available (User)", + "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_hardwareaccelerationmodeenabled_0", - "displayName": "Disabled", + "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_hardwareaccelerationmodeenabled_1", - "displayName": "Enabled", + "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_importautofillformdata", - "displayName": "Allow importing of autofill form data (User)", + "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_importautofillformdata_0", + "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_importautofillformdata_1", + "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_importfavorites", - "displayName": "Allow importing of favorites (User)", + "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_importfavorites_0", - "displayName": "Disabled", + "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_importfavorites_1", - "displayName": "Enabled", + "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_importhistory", - "displayName": "Allow importing of browsing history (User)", + "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_importhistory_0", + "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_importhistory_1", + "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_importhomepage", - "displayName": "Allow importing of home page settings (User)", + "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_importhomepage_0", + "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_importhomepage_1", + "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_importpaymentinfo", - "displayName": "Allow importing of payment info (User)", + "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_importpaymentinfo_0", + "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_importpaymentinfo_1", + "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_importsavedpasswords", - "displayName": "Allow importing of saved passwords (User)", + "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_importsavedpasswords_0", + "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_importsavedpasswords_1", + "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_importsearchengine", - "displayName": "Allow importing of search engine settings (User)", + "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_importsearchengine_0", + "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_importsearchengine_1", + "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_inprivatemodeavailability", - "displayName": "Configure InPrivate mode availability (User)", + "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_inprivatemodeavailability_0", + "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_inprivatemodeavailability_1", + "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_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~contentsettings_notificationsblockedforurls_notificationsblockedforurlsdesc", + "displayName": "Block notifications on specific sites (User)", + "options": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel", - "displayName": "Configure Internet Explorer integration (User)", + "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_internetexplorerintegrationlevel_0", + "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_internetexplorerintegrationlevel_1", + "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_internetexplorerintegrationlevel_internetexplorerintegrationlevel", - "displayName": "Configure Internet Explorer integration (User)", + "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_internetexplorerintegrationlevel_internetexplorerintegrationlevel_1", - "displayName": "Internet Explorer mode", + "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_internetexplorerintegrationlevel_internetexplorerintegrationlevel_2", - "displayName": "Internet Explorer 11", + "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_isolateorigins", - "displayName": "Enable site isolation for specific origins (User)", + "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_isolateorigins_0", + "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_isolateorigins_1", + "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_isolateorigins_isolateorigins", - "displayName": "Enable site isolation for specific origins (User)", + "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_managedfavorites", - "displayName": "Configure favorites (User)", + "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_managedfavorites_0", + "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_managedfavorites_1", + "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_managedfavorites_managedfavorites", - "displayName": "Configure favorites (User)", + "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_managedsearchengines", - "displayName": "Manage Search Engines (User)", + "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_managedsearchengines_0", + "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_managedsearchengines_1", + "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_managedsearchengines_managedsearchengines", - "displayName": "Manage Search Engines (User)", + "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_maxconnectionsperproxy", - "displayName": "Maximum number of concurrent connections to the proxy server (User)", + "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_maxconnectionsperproxy_0", + "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_maxconnectionsperproxy_1", + "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_maxconnectionsperproxy_maxconnectionsperproxy", - "displayName": "Maximum number of concurrent connections to the proxy server: (User)", + "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_mediaroutercastallowallips", - "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses (User)", + "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_mediaroutercastallowallips_0", + "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_mediaroutercastallowallips_1", + "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_metricsreportingenabled", - "displayName": "Enable usage and crash-related data reporting (User)", + "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_metricsreportingenabled_0", + "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_metricsreportingenabled_1", + "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_networkpredictionoptions", - "displayName": "Enable network prediction (User)", + "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_networkpredictionoptions_0", + "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_networkpredictionoptions_1", + "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_networkpredictionoptions_networkpredictionoptions", - "displayName": "Enable network prediction (User)", + "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_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.)", + "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_networkpredictionoptions_networkpredictionoptions_2", - "displayName": "Don't predict network actions on any network connection", + "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_overridesecurityrestrictionsoninsecureorigin", - "displayName": "Control where security restrictions on insecure origins apply (User)", + "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_overridesecurityrestrictionsoninsecureorigin_0", + "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_overridesecurityrestrictionsoninsecureorigin_1", + "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_overridesecurityrestrictionsoninsecureorigin_overridesecurityrestrictionsoninsecureorigindesc", - "displayName": "Control where security restrictions on insecure origins apply (User)", + "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_proactiveauthenabled", - "displayName": "Enable Proactive Authentication (User)", + "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_proactiveauthenabled_0", + "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_proactiveauthenabled_1", + "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_promotionaltabsenabled", - "displayName": "Enable full-tab promotional content (User)", + "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_promotionaltabsenabled_0", + "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_promotionaltabsenabled_1", + "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_promptfordownloadlocation", - "displayName": "Ask where to save downloaded files (User)", + "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_promptfordownloadlocation_0", + "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_promptfordownloadlocation_1", + "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_quicallowed", - "displayName": "Allow QUIC protocol (User)", + "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_quicallowed_0", + "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_quicallowed_1", + "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_recommended_applicationlocalevalue_recommended", - "displayName": "Set application locale (User)", + "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_recommended_applicationlocalevalue_recommended_0", + "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_recommended_applicationlocalevalue_recommended_1", + "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_recommended_applicationlocalevalue_recommended_applicationlocalevalue", - "displayName": "Application locale (User)", + "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_recommended_autofilladdressenabled_recommended", - "displayName": "Enable AutoFill for addresses (User)", + "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_recommended_autofilladdressenabled_recommended_0", + "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_recommended_autofilladdressenabled_recommended_1", + "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_recommended_autofillcreditcardenabled_recommended", - "displayName": "Enable AutoFill for credit cards (User)", + "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_recommended_autofillcreditcardenabled_recommended_0", + "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_recommended_autofillcreditcardenabled_recommended_1", + "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_recommended_backgroundmodeenabled_recommended", - "displayName": "Continue running background apps after Microsoft Edge closes (User)", + "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_recommended_backgroundmodeenabled_recommended_0", + "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_recommended_backgroundmodeenabled_recommended_1", + "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_recommended_blockthirdpartycookies_recommended", - "displayName": "Block third party cookies (User)", + "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_recommended_blockthirdpartycookies_recommended_0", + "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_recommended_blockthirdpartycookies_recommended_1", + "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_recommended_downloaddirectory_recommended", - "displayName": "Set download directory (User)", + "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_recommended_downloaddirectory_recommended_0", + "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_recommended_downloaddirectory_recommended_1", + "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_recommended_downloaddirectory_recommended_downloaddirectory", - "displayName": "Set download directory (User)", + "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_recommended_downloadrestrictions_recommended", - "displayName": "Allow download restrictions (User)", + "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_recommended_downloadrestrictions_recommended_0", + "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_recommended_downloadrestrictions_recommended_1", + "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_recommended_downloadrestrictions_recommended_downloadrestrictions", - "displayName": "Download restrictions (User)", + "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_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", + "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_recommended_downloadrestrictions_recommended_downloadrestrictions_3", - "displayName": "Block all downloads", + "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_recommended_favoritesbarenabled_recommended", - "displayName": "Enable favorites bar (User)", + "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_recommended_favoritesbarenabled_recommended_0", + "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_recommended_favoritesbarenabled_recommended_1", + "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_recommended_importautofillformdata_recommended", - "displayName": "Allow importing of autofill form data (User)", + "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_recommended_importautofillformdata_recommended_0", + "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_recommended_importautofillformdata_recommended_1", + "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_recommended_importfavorites_recommended", - "displayName": "Allow importing of favorites (User)", + "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_recommended_importfavorites_recommended_0", + "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_recommended_importfavorites_recommended_1", + "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_recommended_importhistory_recommended", - "displayName": "Allow importing of browsing history (User)", + "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_recommended_importhistory_recommended_0", + "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_recommended_importhistory_recommended_1", + "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_recommended_importpaymentinfo_recommended", - "displayName": "Allow importing of payment info (User)", + "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_recommended_importpaymentinfo_recommended_0", + "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_recommended_importpaymentinfo_recommended_1", + "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_recommended_importsavedpasswords_recommended", - "displayName": "Allow importing of saved passwords (User)", + "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_recommended_importsavedpasswords_recommended_0", + "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_recommended_importsavedpasswords_recommended_1", + "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_recommended_importsearchengine_recommended", - "displayName": "Allow importing of search engine settings (User)", + "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_recommended_importsearchengine_recommended_0", + "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_recommended_importsearchengine_recommended_1", + "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_recommended_networkpredictionoptions_recommended", - "displayName": "Enable network prediction (User)", + "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_recommended_networkpredictionoptions_recommended_0", + "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_recommended_networkpredictionoptions_recommended_1", + "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_recommended_networkpredictionoptions_recommended_networkpredictionoptions", - "displayName": "Enable network prediction (User)", + "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_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.)", + "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_recommended_networkpredictionoptions_recommended_networkpredictionoptions_2", - "displayName": "Don't predict network actions on any network connection", + "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_recommended_resolvenavigationerrorsusewebservice_recommended", - "displayName": "Enable resolution of navigation errors using a web service (User)", + "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_recommended_resolvenavigationerrorsusewebservice_recommended_0", + "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_recommended_resolvenavigationerrorsusewebservice_recommended_1", + "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_recommended_searchsuggestenabled_recommended", - "displayName": "Enable search suggestions (User)", + "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_recommended_searchsuggestenabled_recommended_0", + "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_recommended_searchsuggestenabled_recommended_1", + "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_recommended_syncdisabled_recommended", - "displayName": "Disable synchronization of data using Microsoft sync services (User)", + "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_recommended_syncdisabled_recommended_0", + "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_recommended_syncdisabled_recommended_1", + "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_recommended_translateenabled_recommended", - "displayName": "Enable Translate (User)", + "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_recommended_translateenabled_recommended_0", + "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_recommended_translateenabled_recommended_1", + "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_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", - "displayName": "Register protocol handlers (User)", + "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_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", - "displayName": "Disabled", + "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_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", - "displayName": "Enabled", + "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_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)", + "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_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", + "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_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", + "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_recommended~printing_recommended_printheaderfooter_recommended", + "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_recommended~printing_recommended_printheaderfooter_recommended_0", + "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_recommended~printing_recommended_printheaderfooter_recommended_1", + "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_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended", - "displayName": "Set the system default printer as the default printer (User)", + "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_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", + "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_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", + "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_recommended~smartscreen_recommended_smartscreenenabled_recommended", - "displayName": "Configure Microsoft Defender SmartScreen (User)", + "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_recommended~smartscreen_recommended_smartscreenenabled_recommended_0", + "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_recommended~smartscreen_recommended_smartscreenenabled_recommended_1", + "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_recommended~startup_recommended_homepageisnewtabpage_recommended", - "displayName": "Set the new tab page as the home page (User)", + "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_recommended~startup_recommended_homepageisnewtabpage_recommended_0", + "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_recommended~startup_recommended_homepageisnewtabpage_recommended_1", + "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_recommended~startup_recommended_homepagelocation_recommended", - "displayName": "Configure the home page URL (User)", + "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_recommended~startup_recommended_homepagelocation_recommended_0", + "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_recommended~startup_recommended_homepagelocation_recommended_1", + "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_recommended~startup_recommended_homepagelocation_recommended_homepagelocation", - "displayName": "Home page URL (User)", + "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_recommended~startup_recommended_newtabpagelocation_recommended", - "displayName": "Configure the new tab page URL (User)", + "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_recommended~startup_recommended_newtabpagelocation_recommended_0", + "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_recommended~startup_recommended_newtabpagelocation_recommended_1", + "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_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)", + "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_recommended~startup_recommended_restoreonstartup_recommended_0", - "displayName": "Disabled", + "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_recommended~startup_recommended_restoreonstartup_recommended_1", - "displayName": "Enabled", + "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_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", + "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_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", - "displayName": "Restore the last session", + "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_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", - "displayName": "Open a list of URLs", + "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_recommended~startup_recommended_restoreonstartupurls_recommended", - "displayName": "Sites to open when the browser starts (User)", + "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_recommended~startup_recommended_restoreonstartupurls_recommended_0", + "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_recommended~startup_recommended_restoreonstartupurls_recommended_1", + "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_recommended~startup_recommended_restoreonstartupurls_recommended_restoreonstartupurlsdesc", - "displayName": "Sites to open when the browser starts (User)", + "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_recommended~startup_recommended_showhomebutton_recommended", - "displayName": "Show Home button on toolbar (User)", + "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_recommended~startup_recommended_showhomebutton_recommended_0", + "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_recommended~startup_recommended_showhomebutton_recommended_1", + "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_relaunchnotification", - "displayName": "Notify a user that a browser restart is recommended or required for pending updates (User)", + "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_relaunchnotification_0", + "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_relaunchnotification_1", + "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_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~proxy_proxysettings_proxysettings", + "displayName": "Proxy settings (User)", + "options": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod", - "displayName": "Set the time period for update notifications (User)", + "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_relaunchnotificationperiod_0", + "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_relaunchnotificationperiod_1", + "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_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)", + "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_requireonlinerevocationchecksforlocalanchors_0", + "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_requireonlinerevocationchecksforlocalanchors_1", + "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_resolvenavigationerrorsusewebservice", - "displayName": "Enable resolution of navigation errors using a web service (User)", + "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_resolvenavigationerrorsusewebservice_0", + "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_resolvenavigationerrorsusewebservice_1", + "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_restrictsignintopattern", - "displayName": "Restrict which accounts can be used to sign in to Microsoft Edge (User)", + "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_restrictsignintopattern_0", + "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_restrictsignintopattern_1", + "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_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)", + "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_runallflashinallowmode_0", + "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_runallflashinallowmode_1", + "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_savingbrowserhistorydisabled", - "displayName": "Disable saving browser history (User)", + "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_savingbrowserhistorydisabled_0", + "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_savingbrowserhistorydisabled_1", + "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_searchsuggestenabled", - "displayName": "Enable search suggestions (User)", + "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_searchsuggestenabled_0", + "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_searchsuggestenabled_1", + "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_securitykeypermitattestation", - "displayName": "Websites or domains that don't need permission to use direct Security Key attestation (User)", + "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_securitykeypermitattestation_0", + "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_securitykeypermitattestation_1", + "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_securitykeypermitattestation_securitykeypermitattestationdesc", - "displayName": "Websites or domains that don't need permission to use direct Security Key attestation (User)", + "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_sendintranettointernetexplorer", - "displayName": "Send all intranet sites to Internet Explorer (User)", + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_0", + "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_sendintranettointernetexplorer_1", + "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_sendsiteinfotoimproveservices", - "displayName": "Send site information to improve Microsoft services (User)", + "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_sendsiteinfotoimproveservices_0", - "displayName": "Disabled", + "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_sendsiteinfotoimproveservices_1", - "displayName": "Enabled", + "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_showofficeshortcutinfavoritesbar", - "displayName": "Show Microsoft Office shortcut in favorites bar (User)", + "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_showofficeshortcutinfavoritesbar_0", + "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_showofficeshortcutinfavoritesbar_1", + "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_siteperprocess", - "displayName": "Enable site isolation for every site (User)", + "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_siteperprocess_0", + "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_siteperprocess_1", + "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_edge~policy~microsoft_edge_spellcheckenabled", - "displayName": "Enable spellcheck (User)", + "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_edge~policy~microsoft_edge_spellcheckenabled_0", + "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_edge~policy~microsoft_edge_spellcheckenabled_1", + "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_edge~policy~microsoft_edge_spellchecklanguage", - "displayName": "Enable specific spellcheck languages (User)", + "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_edge~policy~microsoft_edge_spellchecklanguage_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge_spellchecklanguage_1", - "displayName": "Enabled", + "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_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", + "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_edge~policy~microsoft_edge_sslerroroverrideallowed_1", - "displayName": "Enabled", + "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_edge~policy~microsoft_edge_sslversionmin", - "displayName": "Minimum TLS version enabled (User)", + "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_edge~policy~microsoft_edge_sslversionmin_0", + "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_edge~policy~microsoft_edge_sslversionmin_1", + "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_edge~policy~microsoft_edge_sslversionmin_sslversionmin", - "displayName": "Minimum SSL version enabled (User)", + "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_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1", - "displayName": "TLS 1.0", + "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_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.1", - "displayName": "TLS 1.1", + "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_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.2", - "displayName": "TLS 1.2", + "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_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", + "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_edge~policy~microsoft_edge_suppressunsupportedoswarning_1", - "displayName": "Enabled", + "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_edge~policy~microsoft_edge_syncdisabled", - "displayName": "Disable synchronization of data using Microsoft sync services (User)", + "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_edge~policy~microsoft_edge_syncdisabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled", - "displayName": "Configure tab lifecycles (User)", + "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_edge~policy~microsoft_edge_tablifecyclesenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_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)", + "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_edge~policy~microsoft_edge_taskmanagerendprocessenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled", - "displayName": "Enable Translate (User)", + "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_edge~policy~microsoft_edge_translateenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_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)", + "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_edge~policy~microsoft_edge_urlallowlist_0", + "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_edge~policy~microsoft_edge_urlallowlist_1", + "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_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)", + "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_edge~policy~microsoft_edge_urlblocklist_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge_urlblocklist_1", - "displayName": "Enabled", + "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_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)", + "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_edge~policy~microsoft_edge_userdatadir_0", + "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_edge~policy~microsoft_edge_userdatadir_1", + "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_edge~policy~microsoft_edge_userdatadir_userdatadir", - "displayName": "Set the user data directory (User)", + "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_edge~policy~microsoft_edge_userfeedbackallowed", - "displayName": "Allow user feedback (User)", + "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_edge~policy~microsoft_edge_userfeedbackallowed_0", + "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_edge~policy~microsoft_edge_userfeedbackallowed_1", + "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_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_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_edge~policy~microsoft_edge_videocaptureallowedurls", - "displayName": "Sites that can access video capture devices without requesting permission (User)", + "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_edge~policy~microsoft_edge_videocaptureallowedurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_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)", + "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_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies", - "displayName": "Allow WebDriver to Override Incompatible Policies (deprecated) (User)", + "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_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_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)", + "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_edge~policy~microsoft_edge_webrtclocalhostiphandling_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_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)", + "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_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", + "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_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", + "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_edge~policy~microsoft_edge_webrtcudpportrange", - "displayName": "Restrict the range of local UDP ports used by WebRTC (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended", + "displayName": "Allow users to configure Site safety services (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_0", + "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_edge~policy~microsoft_edge_webrtcudpportrange_1", + "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_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)", + "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_edge~policy~microsoft_edge_wpadquickcheckenabled_0", + "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_edge~policy~microsoft_edge_wpadquickcheckenabled_1", + "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_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls", - "displayName": "Automatically select client certificates for these sites (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled", + "displayName": "Allow users to configure Site safety services (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_1", + "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_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_cookiesallowedforurlsdesc", - "displayName": "Allow cookies on specific sites (User)", + "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_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls", - "displayName": "Block cookies on specific sites (User)", + "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_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_1", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting", - "displayName": "Configure cookies (User)", + "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_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", + "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_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_4", - "displayName": "Keep cookies for the duration of the session", + "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_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting", - "displayName": "Default geolocation setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", - "displayName": "Default geolocation setting (User)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting", - "displayName": "Default images setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_0", + "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_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_1", + "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_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_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_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting", - "displayName": "Default JavaScript setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting", - "displayName": "Default JavaScript setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_1", - "displayName": "Allow all sites to run JavaScript", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting", - "displayName": "Default notification setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting", - "displayName": "Default notification setting (User)", + "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_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", + "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_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_3", - "displayName": "Ask every time a site wants to show desktop notifications", + "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_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting", - "displayName": "Default Adobe Flash setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_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)", + "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_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_2", - "displayName": "Block the Adobe Flash plugin", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_3", - "displayName": "Click to play", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting", - "displayName": "Default pop-up window setting (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_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)", + "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_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting_1", - "displayName": "Allow all sites to show pop-ups", + "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_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", + "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_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_1", - "displayName": "Enabled", + "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_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", - "displayName": "Control use of the Web Bluetooth API (User)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting", - "displayName": "Control use of the WebUSB API (User)", + "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_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_2", - "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls", - "displayName": "Allow images on these sites (User)", + "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_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_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)", + "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_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_1", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_1", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_1", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_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)", + "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_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls", - "displayName": "Block the Adobe Flash plug-in on specific sites (User)", + "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_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_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)", + "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_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_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)", + "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_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_0", + "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_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_1", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_1", - "displayName": "Enabled", + "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_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)", + "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_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings", - "displayName": "Default search provider encodings (User)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_0", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_1", + "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_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_0", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_1", + "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_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "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_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_0", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_1", + "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_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_0", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_1", + "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_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_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)", + "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_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_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)", + "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_edge~policy~microsoft_edge~extensions_extensionallowedtypes_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_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)", + "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_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_0", + "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_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_1", + "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_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)", + "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_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_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)", + "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_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_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)", + "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_edge~policy~microsoft_edge~extensions_extensioninstallsources_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_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)", + "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_edge~policy~microsoft_edge~extensions_extensionsettings_0", + "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_edge~policy~microsoft_edge~extensions_extensionsettings_1", + "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_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)", + "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_edge~policy~microsoft_edge~googlecast_enablemediarouter_0", + "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_edge~policy~microsoft_edge~googlecast_enablemediarouter_1", + "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_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar", - "displayName": "Show the cast icon in the toolbar (User)", + "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_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_0", + "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_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_1", + "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_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt", - "displayName": "Allow cross-origin HTTP Basic Auth prompts (User)", + "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_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_0", + "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_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_1", + "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_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist", - "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to (User)", + "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_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_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)", + "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_edge~policy~microsoft_edge~httpauthentication_authschemes_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~httpauthentication_authschemes_1", - "displayName": "Enabled", + "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_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)", + "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_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_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)", + "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_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_0", + "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_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_1", + "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_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport", - "displayName": "Include non-standard port in Kerberos SPN (User)", + "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_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_1", - "displayName": "Enabled", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist", - "displayName": "Control which native messaging hosts users can use (User)", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_0", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_1", + "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_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)", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_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)", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts", - "displayName": "Allow user-level native messaging hosts (installed without admin permissions) (User)", + "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_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_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_edgev109~policy~microsoft_edge_clipboardblockedforurls_clipboardblockedforurlsdesc", + "displayName": "Block clipboard use on specific sites (User)", + "options": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl", - "displayName": "Configure the change password URL (User)", + "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_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_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)", + "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_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_1", - "displayName": "Enabled", + "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_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)", + "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 (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_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)", + "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_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", - "displayName": "Password protection warning is off", + "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_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", - "displayName": "Password protection warning is triggered by password reuse", + "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_edge~policy~microsoft_edge~printing_defaultprinterselection", - "displayName": "Default printer selection rules (User)", + "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_edge~policy~microsoft_edge~printing_defaultprinterselection_0", + "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_edge~policy~microsoft_edge~printing_defaultprinterselection_1", + "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_edge~policy~microsoft_edge~printing_defaultprinterselection_defaultprinterselection", - "displayName": "Default printer selection rules (User)", + "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_edge~policy~microsoft_edge~printing_printheaderfooter", - "displayName": "Print headers and footers (User)", + "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_edge~policy~microsoft_edge~printing_printheaderfooter_0", + "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_edge~policy~microsoft_edge~printing_printheaderfooter_1", + "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_edge~policy~microsoft_edge~printing_printingenabled", - "displayName": "Enable printing (User)", + "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_edge~policy~microsoft_edge~printing_printingenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_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)", + "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_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_0", + "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_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_1", + "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_edge~policy~microsoft_edge~printing_usesystemprintdialog", - "displayName": "Print using system print dialog (User)", + "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_edge~policy~microsoft_edge~printing_usesystemprintdialog_0", + "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_edge~policy~microsoft_edge~printing_usesystemprintdialog_1", + "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_edge~policy~microsoft_edge~proxy_proxybypasslist", - "displayName": "Configure proxy bypass rules (User)", + "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_edge~policy~microsoft_edge~proxy_proxybypasslist_0", + "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_edge~policy~microsoft_edge~proxy_proxybypasslist_1", + "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_edge~policy~microsoft_edge~proxy_proxybypasslist_proxybypasslist", - "displayName": "Comma-separated list of proxy bypass rules (User)", + "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_edge~policy~microsoft_edge~proxy_proxymode", - "displayName": "Configure proxy server settings (User)", + "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_edge~policy~microsoft_edge~proxy_proxymode_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_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)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_system", - "displayName": "Use system proxy settings", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl", - "displayName": "Set the proxy .pac file URL (User)", + "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_edge~policy~microsoft_edge~proxy_proxypacurl_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~proxy_proxypacurl_1", - "displayName": "Enabled", + "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_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)", + "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_edge~policy~microsoft_edge~proxy_proxyserver_0", + "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_edge~policy~microsoft_edge~proxy_proxyserver_1", + "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_edge~policy~microsoft_edge~proxy_proxyserver_proxyserver", - "displayName": "Configure address or URL of proxy server (User)", + "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_edge~policy~microsoft_edge~proxy_proxysettings", - "displayName": "Proxy settings (User)", + "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_edge~policy~microsoft_edge~proxy_proxysettings_0", + "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_edge~policy~microsoft_edge~proxy_proxysettings_1", + "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_edge~policy~microsoft_edge~proxy_proxysettings_proxysettings", - "displayName": "Proxy settings (User)", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride", - "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites (User)", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_0", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_1", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles", - "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads (User)", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_0", - "displayName": "Disabled", + "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_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_1", - "displayName": "Enabled", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains", - "displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings (User)", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_0", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_1", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_smartscreenallowlistdomainsdesc", - "displayName": "Configure the list of domains for which SmartScreen won't trigger warnings (User)", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenenabled", - "displayName": "Configure Microsoft Defender SmartScreen (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_0", + "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_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_1", + "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_edge~policy~microsoft_edge~startup_homepageisnewtabpage", - "displayName": "Set the new tab page as the home page (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage_0", + "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_edge~policy~microsoft_edge~startup_homepageisnewtabpage_1", + "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_edge~policy~microsoft_edge~startup_homepagelocation", - "displayName": "Configure the home page URL (User)", + "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_edge~policy~microsoft_edge~startup_homepagelocation_0", + "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_edge~policy~microsoft_edge~startup_homepagelocation_1", + "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_edge~policy~microsoft_edge~startup_homepagelocation_homepagelocation", - "displayName": "Home page URL (User)", + "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_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites", - "displayName": "Hide the default top sites from the new tab page (User)", + "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_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_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)", + "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_edge~policy~microsoft_edge~startup_newtabpagelocation_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_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)", + "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_edge~policy~microsoft_edge~startup_restoreonstartup_0", + "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_edge~policy~microsoft_edge~startup_restoreonstartup_1", + "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_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", - "displayName": "Action to take on startup (User)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_4", - "displayName": "Open a list of URLs", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls", - "displayName": "Sites to open when the browser starts (User)", + "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_edge~policy~microsoft_edge~startup_restoreonstartupurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", + "displayName": "Enable CryptoWallet feature (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions", - "displayName": "Allow download restrictions (User)", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", - "displayName": "Download restrictions (User)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_0", + "displayName": "Disabled", "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", + "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_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", - "displayName": "Block all downloads", + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_4", - "displayName": "Block malicious downloads", + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended", - "displayName": "Allow download restrictions (User)", + "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_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_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)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_0", + "displayName": "Disabled", "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", + "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 (obsolete) (User)", + "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", - "displayName": "Block all downloads", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_4", - "displayName": "Block malicious downloads", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled", - "displayName": "Configure if the ads transparency feature is enabled (User)", + "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 (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_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)", + "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_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_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)", + "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_edgev100~policy~microsoft_edge_pdfsecuremode_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_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)", + "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_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_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)", + "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_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_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)", + "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 (deprecated) (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", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls", - "displayName": "Allow the WebHID API on these sites (User)", + "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_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_0", + "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_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_1", + "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_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)", + "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_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_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)", + "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_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_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)", + "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_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", + "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_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_1", + "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_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas", - "displayName": "Allow Save page as in Internet Explorer mode (User)", + "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_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", + "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_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_1", + "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_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended", - "displayName": "Allow features to download assets from the Asset Delivery Service (User)", + "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_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_0", + "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_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_1", + "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_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended", - "displayName": "Allow users to configure Site safety services (User)", + "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_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_0", + "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_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_1", + "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_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended", - "displayName": "Configure default state of Allow extensions from other stores setting (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_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)", + "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_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", + "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_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_1", + "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_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled", - "displayName": "Default Profile Setting Enabled (User)", + "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_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_0", - "displayName": "Disabled", + "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_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_1", - "displayName": "Enabled", + "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_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins", + "displayName": "Disable third-party storage partitioning for specific top-level origins (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_0", + "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_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_1", + "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_edgev102~policy~microsoft_edge_networkservicesandboxenabled", - "displayName": "Enable the network service sandbox (User)", + "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_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", + "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_edgev102~policy~microsoft_edge_networkservicesandboxenabled_1", + "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_edgev102~policy~microsoft_edge_outlookhubmenuenabled", - "displayName": "Allow users to access the Outlook menu (User)", + "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_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_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)", + "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_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_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)", + "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_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_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)", + "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_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", + "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_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_1", + "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_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins", - "displayName": "List of origins that allow all HTTP authentication (User)", + "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_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_0", + "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_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_1", + "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_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)", + "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_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed", - "displayName": "Live captions allowed (User)", + "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_edgev103~policy~microsoft_edge_livecaptionsallowed_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_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)", + "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_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled", - "displayName": "Guided Switch Enabled (User)", + "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_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled", + "displayName": "Enable upload files from mobile in Microsoft Edge desktop (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_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)", + "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_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", + "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_edgev104~policy~microsoft_edge_askbeforecloseenabled_1", + "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_edgev104~policy~microsoft_edge_browsercodeintegritysetting", - "displayName": "Configure browser process code integrity guard setting (User)", + "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_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_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)", + "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_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.", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_0", + "displayName": "Disabled", "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.", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_1", + "displayName": "Enabled", "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)", + "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_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_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)", + "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_edgev104~policy~microsoft_edge_edgeedropenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_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)", + "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_edgev104~policy~microsoft_edge_importoneachlaunch_0", + "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_edgev104~policy~microsoft_edge_importoneachlaunch_1", + "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_edgev104~policy~microsoft_edge_pdfxfaenabled", - "displayName": "XFA support in native PDF reader enabled (User)", + "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_edgev104~policy~microsoft_edge_pdfxfaenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu", - "displayName": "Enables Microsoft Edge mini menu (User)", + "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_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", + "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_edgev104~policy~microsoft_edge_quicksearchshowminimenu_1", + "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_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended", - "displayName": "Get user confirmation before closing a browser window with multiple tabs (User)", + "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_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_0", + "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_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_1", + "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_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended", - "displayName": "Enables Microsoft Edge mini menu (User)", + "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_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_0", + "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_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_1", + "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_edgev104~policy~microsoft_edge_textpredictionenabled", - "displayName": "Text prediction enabled by default (User)", + "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_edgev104~policy~microsoft_edge_textpredictionenabled_0", + "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_edgev104~policy~microsoft_edge_textpredictionenabled_1", + "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_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled", - "displayName": "Restrict the length of passwords that can be saved in the Password Manager (User)", + "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_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_0", + "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_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_1", + "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_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings", - "displayName": "Disable download file type extension-based warnings for specified file types on domains (User)", + "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_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", + "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_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_1", + "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_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)", + "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 Microsoft Entra on the profile-related UI of a work profile (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", + "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_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_1", + "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_edgev105~policy~microsoft_edge_microsofteditorproofingenabled", - "displayName": "Spell checking provided by Microsoft Editor (User)", + "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_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", + "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_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_1", + "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_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled", - "displayName": "Synonyms are provided when using Microsoft Editor spell checker (User)", + "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_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", + "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_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_1", + "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_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)", + "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_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_0", + "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_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_1", + "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_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy", + "displayName": "Allow cloud-based Microsoft Edge management service user policies to override local user policies. (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.", + "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_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_4", - "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "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_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled", - "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated) (User)", + "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_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_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)", + "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_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", + "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_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_1", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended", - "displayName": "Efficiency mode enabled (User)", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_0", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_1", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended", - "displayName": "Enable efficiency mode when the device is connected to a power source (User)", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_0", + "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_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_1", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled", - "displayName": "Efficiency mode enabled (User)", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_0", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_1", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled", - "displayName": "Enable efficiency mode when the device is connected to a power source (User)", + "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_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_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)", + "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_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_0", + "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_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_1", + "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_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet", - "displayName": "Enhanced Security Mode configuration for Intranet zone sites (User)", + "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_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", + "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_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_1", + "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_edgev107~policy~microsoft_edge_eventpathenabled", - "displayName": "Re-enable the Event.path API until Microsoft Edge version 115 (User)", + "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_edgev107~policy~microsoft_edge_eventpathenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_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)", + "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_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_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)", + "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_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_0", + "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_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_1", + "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_edgev107~policy~microsoft_edge_webselectenabled", - "displayName": "Web Select Enabled (User)", + "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_edgev107~policy~microsoft_edge_webselectenabled_0", + "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_edgev107~policy~microsoft_edge_webselectenabled_1", + "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_edgev107~policy~microsoft_edge_websqlaccess", - "displayName": "Force WebSQL to be enabled (User)", + "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_edgev107~policy~microsoft_edge_websqlaccess_0", + "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_edgev107~policy~microsoft_edge_websqlaccess_1", + "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_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled", - "displayName": "Force WebSQL in non-secure contexts to be enabled (deprecated) (User)", + "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_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", + "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_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_1", + "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_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled", - "displayName": "Enable Workspaces (User)", + "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_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_0", + "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_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_1", + "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_edgev107~policy~microsoft_edge~identity_linkedaccountenabled", - "displayName": "Enable the linked account feature (User)", + "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_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled", - "displayName": "Performance Detector Enabled (User)", + "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_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_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)", + "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_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_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)", + "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_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_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)", + "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_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", + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_2", - "displayName": "Never share the OS Regional format", + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_1", + "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled", - "displayName": "TLS Encrypted ClientHello Enabled (User)", + "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_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_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)", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_0", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_1", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting", - "displayName": "'Set the default \"share additional operating system region\" setting (User)", + "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_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", + "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_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_2", - "displayName": "Never share the OS Regional format", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled", - "displayName": "Hide App Launcher on Microsoft Edge new tab page (User)", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_0", + "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_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_1", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls", - "displayName": "Allow clipboard use on specific sites (User)", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls_1", + "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_edgev109~policy~microsoft_edge_clipboardallowedforurls_clipboardallowedforurlsdesc", - "displayName": "Allow clipboard use on specific sites (User)", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls", - "displayName": "Block clipboard use on specific sites (User)", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls_1", + "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_edgev109~policy~microsoft_edge_clipboardblockedforurls_clipboardblockedforurlsdesc", - "displayName": "Block clipboard use on specific sites (User)", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting", - "displayName": "Default clipboard site permission (User)", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_1", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting", - "displayName": "Default clipboard site permission (User)", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_2", - "displayName": "Do not allow any site to use the clipboard site permission", + "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_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_3", - "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "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_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext", + "displayName": "Control Copilot with Commercial Data Protection access to page context for Microsoft Entra ID profiles (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext", + "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events (deprecated) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_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)", + "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_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_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)", + "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_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_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)", + "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_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_0", + "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_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_1", + "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_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended", - "displayName": "Search Filters Enabled (User)", + "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_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_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)", + "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_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_0", + "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_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_1", + "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_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)", + "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 (obsolete) (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled", - "displayName": "Search in Sidebar enabled (User)", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled", - "displayName": "Search in Sidebar enabled (User)", + "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_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", + "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_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_2", - "displayName": "Disable search in sidebar", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls", - "displayName": "Allow multiple automatic downloads in quick succession on specific sites (User)", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_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)", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_0", - "displayName": "Disabled", + "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_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_1", - "displayName": "Enabled", + "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_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)", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_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)", + "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_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_1", - "displayName": "Allow all websites to perform automatic downloads", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_0", + "displayName": "Disabled", "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", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_1", + "displayName": "Enabled", "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)", + "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_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_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)", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_0", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_1", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", - "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (User)", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_0", + "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_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_1", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings", - "displayName": "Configure the sticky print preview settings (User)", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_0", + "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_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_1", + "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_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)", + "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_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", - "displayName": "Disabled", + "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_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_1", - "displayName": "Enabled", + "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_edgev111~policy~microsoft_edge_newpdfreaderenabled", - "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled (User)", + "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_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", + "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_edgev111~policy~microsoft_edge_newpdfreaderenabled_1", + "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_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended", - "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled (User)", + "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_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled", + "displayName": "Enable Printing LPAC Sandbox (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev129~policy~microsoft_edge~printing_printinglpacsandboxenabled_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext", + "displayName": "Control Copilot access to Microsoft Edge page content for Entra account user profiles when using Copilot in the Microsoft Edge sidepane (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge_edgeentracopilotpagecontext_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled", + "displayName": "Extensions Performance Detector enabled (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev130~policy~microsoft_edge~performance_extensionsperformancedetectorenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", - "displayName": "Enable CryptoWallet feature (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled", - "displayName": "Mouse Gesture Enabled (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev131~policy~microsoft_edge_edgesidebarappurlhostallowlist_edgesidebarappurlhostallowlistdesc", + "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled", + "displayName": "Machine learning powered autofill suggestions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_edgeautofillmlenabled_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)", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed", + "displayName": "Live translation allowed (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_livetranslationallowed_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview", - "displayName": "Restore PDF view (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled", + "displayName": "Personalize my top sites in Customize Sidebar enabled by default (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_personalizetopsitesincustomizesidebarenabled_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled", - "displayName": "Enable tab organization suggestions (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended", + "displayName": "Machine learning powered autofill suggestions (User)", "options": [ { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended_0", "displayName": "Disabled", "description": null }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_1", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_recommended_edgeautofillmlenabled_recommended_1", "displayName": "Enabled", "description": null } ] }, { - "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled", - "displayName": "Enables default browser settings campaigns (User)", + "id": "user_vendor_msft_policy_config_microsoft_edgev132~policy~microsoft_edge_selectparserrelaxationenabled", + "displayName": "Controls whether the new HTML parser behavior for the