chore: add multiple new policies.
This commit is contained in:
@ -16,25 +16,6 @@ Connect-MgGraph -Scopes "DeviceManagementConfiguration.ReadWrite.All", "Organiza
|
|||||||
$tenant = Get-MgOrganization
|
$tenant = Get-MgOrganization
|
||||||
$tenantId = $tenant.Id
|
$tenantId = $tenant.Id
|
||||||
|
|
||||||
$policies = Get-ChildItem ./policies
|
|
||||||
|
|
||||||
ForEach ($policie in $policies) {
|
|
||||||
$PolicieName = $policie.name
|
|
||||||
|
|
||||||
$JsonData = Get-Content -Path ./policies/$PolicieName -Raw
|
|
||||||
$JsonDataUpdated = $JsonData -replace '\$tenantId', $tenantId
|
|
||||||
$PolicyObject = $JsonDataUpdated | ConvertFrom-Json
|
|
||||||
|
|
||||||
try {
|
|
||||||
$uri = "https://graph.microsoft.com/beta/deviceManagement/configurationPolicies" # Using the beta version
|
|
||||||
$response = Invoke-MgGraphRequest -Method POST -Uri $uri -Body ($PolicyObject | ConvertTo-Json -Depth 10)
|
|
||||||
Write-Host "✅ $PolicieName - successfully imported!"
|
|
||||||
#$response
|
|
||||||
} catch {
|
|
||||||
Write-Error "❌ An error occurred while importing the policy: $_"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# Define the dynamic membership rule
|
# Define the dynamic membership rule
|
||||||
$dynamicRule = '(device.deviceOSType -eq "Windows") and (device.accountEnabled -eq true) and (device.managementType -eq "MDM")'
|
$dynamicRule = '(device.deviceOSType -eq "Windows") and (device.accountEnabled -eq true) and (device.managementType -eq "MDM")'
|
||||||
@ -82,6 +63,24 @@ $groupBodyJson = $groupBody | ConvertTo-Json -Depth 10
|
|||||||
$null = Invoke-MgGraphRequest -Method POST -Uri "https://graph.microsoft.com/beta/groups" -Body $groupBodyJson -ContentType "application/json"
|
$null = Invoke-MgGraphRequest -Method POST -Uri "https://graph.microsoft.com/beta/groups" -Body $groupBodyJson -ContentType "application/json"
|
||||||
Write-Host "✅ Successfully created group $group"
|
Write-Host "✅ Successfully created group $group"
|
||||||
|
|
||||||
|
$policies = Get-ChildItem ./policies/settingscatalog
|
||||||
|
|
||||||
|
ForEach ($policie in $policies) {
|
||||||
|
$PolicyName = $policie.name
|
||||||
|
|
||||||
|
$JsonData = Get-Content -Path ./policies/settingscatalog/$PolicieName -Raw
|
||||||
|
$JsonDataUpdated = $JsonData -replace '\$tenantId', $tenantId
|
||||||
|
$PolicyObject = $JsonDataUpdated | ConvertFrom-Json
|
||||||
|
|
||||||
|
try {
|
||||||
|
$uri = "https://graph.microsoft.com/beta/deviceManagement/configurationPolicies" # Using the beta version
|
||||||
|
$null = Invoke-MgGraphRequest -Method POST -Uri $uri -Body ($PolicyObject | ConvertTo-Json -Depth 10)
|
||||||
|
Write-Host "✅ $PolicyName - successfully imported!"
|
||||||
|
} catch {
|
||||||
|
Write-Error "❌ An error occurred while importing the policy: $_"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Create Windows Update Ring Policies
|
# Create Windows Update Ring Policies
|
||||||
# Create a baseline policy using web interface
|
# Create a baseline policy using web interface
|
||||||
@ -94,19 +93,178 @@ Write-Host "✅ Successfully created group $group"
|
|||||||
# Define the update ring configuration with Microsoft product updates enabled
|
# Define the update ring configuration with Microsoft product updates enabled
|
||||||
$params = @{
|
$params = @{
|
||||||
"@odata.type"= "#microsoft.graph.windowsUpdateForBusinessConfiguration"
|
"@odata.type"= "#microsoft.graph.windowsUpdateForBusinessConfiguration"
|
||||||
"displayName"= "Windows 11 Update Ring"
|
"displayName"= "Win - Windows Updates - Ring 1 - Pilot"
|
||||||
"description"= "Update ring for Windows 11 devices"
|
"description"= "Devices in this ring receive updates immediately after release with 1 day grace period before a forced reboot."
|
||||||
"automaticUpdateMode"= "autoInstallAndRebootAtMaintenanceTime"
|
"automaticUpdateMode"= "windowsDefault"
|
||||||
"qualityUpdatesDeferralPeriodInDays"= 7
|
"deliveryOptimizationMode"= "userDefined"
|
||||||
"featureUpdatesDeferralPeriodInDays"= 30
|
"prereleaseFeatures"= "userDefined"
|
||||||
"allowMicrosoftUpdate"= $true # Enables updates for Microsoft products
|
"microsoftUpdateServiceAllowed"= $true # Enables updates for Microsoft products
|
||||||
|
"driversExcluded"= $false
|
||||||
|
"qualityUpdatesDeferralPeriodInDays"= 0
|
||||||
|
"featureUpdatesDeferralPeriodInDays"= 0
|
||||||
|
"qualityUpdatesPaused"= $false
|
||||||
|
"featureUpdatesPaused"= $false
|
||||||
|
"businessReadyUpdatesOnly"= "userDefined"
|
||||||
|
"skipChecksBeforeRestart"= $false
|
||||||
|
"featureUpdatesRollbackWindowInDays"= 30
|
||||||
|
"qualityUpdatesWillBeRolledBack"= $false
|
||||||
|
"featureUpdatesWillBeRolledBack"= $false
|
||||||
|
"deadlineForFeatureUpdatesInDays"= 0
|
||||||
|
"deadlineForQualityUpdatesInDays"= 0
|
||||||
|
"deadlineGracePeriodInDays"= 1
|
||||||
|
"postponeRebootUntilAfterDeadline"= $true
|
||||||
|
"autoRestartNotificationDismissal"= "notConfigured"
|
||||||
|
"userPauseAccess"= "disabled"
|
||||||
|
"userWindowsUpdateScanAccess"= "enabled"
|
||||||
|
"updateNotificationLevel"= "defaultNotifications"
|
||||||
|
"allowWindows11Upgrade"= $false
|
||||||
|
"roleScopeTagIds"= @("0") # Scope tags (use appropriate scope tags as needed)
|
||||||
|
"supportsScopeTags"= $true
|
||||||
}
|
}
|
||||||
|
|
||||||
$ring = $params.displayName
|
$ring = $params.displayName
|
||||||
|
|
||||||
# Create the update ring policy in Intune
|
# Create the update ring policy in Intune
|
||||||
$null = New-MgDeviceManagementDeviceConfiguration -BodyParameter $params
|
$null = New-MgDeviceManagementDeviceConfiguration -BodyParameter $params
|
||||||
|
Write-Host "✅ Successfully created $ring"
|
||||||
|
|
||||||
|
$params = @{
|
||||||
|
"@odata.type"= "#microsoft.graph.windowsUpdateForBusinessConfiguration"
|
||||||
|
"displayName"= "Win - Windows Updates - Ring 2 - UAT"
|
||||||
|
"description"= "Devices in this ring receive updates 3 days after release and have a 0-day deadline on install with 2 day grace period before a forced reboot."
|
||||||
|
"version"= 1
|
||||||
|
"deliveryOptimizationMode"= "userDefined"
|
||||||
|
"prereleaseFeatures"= "userDefined"
|
||||||
|
"automaticUpdateMode"= "windowsDefault"
|
||||||
|
"microsoftUpdateServiceAllowed"= $true
|
||||||
|
"driversExcluded"= $false
|
||||||
|
"qualityUpdatesDeferralPeriodInDays"= 3
|
||||||
|
"featureUpdatesDeferralPeriodInDays"= 0
|
||||||
|
"qualityUpdatesPaused"= $false
|
||||||
|
"featureUpdatesPaused"= $false
|
||||||
|
"businessReadyUpdatesOnly"= "userDefined"
|
||||||
|
"skipChecksBeforeRestart"= $false
|
||||||
|
"featureUpdatesRollbackWindowInDays"= 30
|
||||||
|
"qualityUpdatesWillBeRolledBack"= $false
|
||||||
|
"featureUpdatesWillBeRolledBack"= $false
|
||||||
|
"deadlineForFeatureUpdatesInDays"= 0
|
||||||
|
"deadlineForQualityUpdatesInDays"= 0
|
||||||
|
"deadlineGracePeriodInDays"= 2
|
||||||
|
"postponeRebootUntilAfterDeadline"= $true
|
||||||
|
"autoRestartNotificationDismissal"= "notConfigured"
|
||||||
|
"userPauseAccess"= "disabled"
|
||||||
|
"userWindowsUpdateScanAccess"= "enabled"
|
||||||
|
"updateNotificationLevel"= "defaultNotifications"
|
||||||
|
"allowWindows11Upgrade"= $false
|
||||||
|
"roleScopeTagIds"= @("0")
|
||||||
|
"supportsScopeTags"= $true
|
||||||
|
"createdDateTime"= "2023-10-27T15:13:33.3648624Z"
|
||||||
|
"lastModifiedDateTime"= "2023-10-27T15:13:33.3648624Z"
|
||||||
|
}
|
||||||
|
|
||||||
|
$ring = $params.displayName
|
||||||
|
|
||||||
|
# Create the update ring policy in Intune
|
||||||
|
$null = New-MgDeviceManagementDeviceConfiguration -BodyParameter $params
|
||||||
|
Write-Host "✅ Successfully created $ring"
|
||||||
|
|
||||||
|
$params = @{
|
||||||
|
"@odata.type"= "#microsoft.graph.windowsUpdateForBusinessConfiguration"
|
||||||
|
"displayName"= "Win - Windows Updates - Ring 3 - Production"
|
||||||
|
"description"= "Devices in this ring receive updates 10 days after release and have a 2-day deadline on install with 1 day grace period before a forced reboot."
|
||||||
|
"version"= 1
|
||||||
|
"deliveryOptimizationMode"= "userDefined"
|
||||||
|
"prereleaseFeatures"= "userDefined"
|
||||||
|
"automaticUpdateMode"= "windowsDefault"
|
||||||
|
"microsoftUpdateServiceAllowed"= $true
|
||||||
|
"driversExcluded"= $false
|
||||||
|
"qualityUpdatesDeferralPeriodInDays"= 10
|
||||||
|
"featureUpdatesDeferralPeriodInDays"= 0
|
||||||
|
"qualityUpdatesPaused"= $false
|
||||||
|
"featureUpdatesPaused"= $false
|
||||||
|
"businessReadyUpdatesOnly"= "userDefined"
|
||||||
|
"skipChecksBeforeRestart"= $false
|
||||||
|
"featureUpdatesRollbackWindowInDays"= 30
|
||||||
|
"qualityUpdatesWillBeRolledBack"= $false
|
||||||
|
"featureUpdatesWillBeRolledBack"= $false
|
||||||
|
"deadlineForFeatureUpdatesInDays"= 2
|
||||||
|
"deadlineForQualityUpdatesInDays"= 2
|
||||||
|
"deadlineGracePeriodInDays"= 1
|
||||||
|
"postponeRebootUntilAfterDeadline"= $true
|
||||||
|
"autoRestartNotificationDismissal"= "notConfigured"
|
||||||
|
"userPauseAccess"= "disabled"
|
||||||
|
"userWindowsUpdateScanAccess"= "enabled"
|
||||||
|
"updateNotificationLevel"= "defaultNotifications"
|
||||||
|
"allowWindows11Upgrade"= $false
|
||||||
|
"roleScopeTagIds"= @("0")
|
||||||
|
"supportsScopeTags"= $true
|
||||||
|
"createdDateTime"= "2023-10-27T15:13:33.5897267Z"
|
||||||
|
"lastModifiedDateTime"= "2023-10-27T15:13:33.5897267Z"
|
||||||
|
}
|
||||||
|
|
||||||
|
$ring = $params.displayName
|
||||||
|
|
||||||
|
# Create the update ring policy in Intune
|
||||||
|
$null = New-MgDeviceManagementDeviceConfiguration -BodyParameter $params
|
||||||
|
Write-Host "✅ Successfully created $ring"
|
||||||
|
|
||||||
|
|
||||||
|
$uri = "https://graph.microsoft.com/beta/deviceManagement/windowsDriverUpdateProfiles"
|
||||||
|
|
||||||
|
# Define the JSON body for the new driver update profile
|
||||||
|
$body = @{
|
||||||
|
"displayName" = "Win - Drivers - Ring 1 - Pilot"
|
||||||
|
"description" = "" # Empty description field from original JSON
|
||||||
|
"approvalType" = "automatic" # "automatic" from the original JSON
|
||||||
|
"deploymentDeferralInDays" = 0 # "0" from the original JSON
|
||||||
|
"newUpdates" = 0 # "0" from the original JSON
|
||||||
|
"roleScopeTagIds" = @("0") # Role Scope Tag ID from the original JSON
|
||||||
|
}
|
||||||
|
|
||||||
|
$ring = $body.displayName
|
||||||
|
$groupBodyJson = $Body | ConvertTo-Json -Depth 10
|
||||||
|
|
||||||
|
# Send the POST request to create the Driver Update Profile
|
||||||
|
$response = Invoke-MgGraphRequest -Method POST -Uri $uri -Body $groupBodyJson -ContentType "application/json"
|
||||||
Write-Host "✅ Successfully created group $ring"
|
Write-Host "✅ Successfully created group $ring"
|
||||||
|
|
||||||
|
|
||||||
|
$uri = "https://graph.microsoft.com/beta/deviceManagement/windowsDriverUpdateProfiles"
|
||||||
|
|
||||||
|
# Define the JSON body for the new driver update profile
|
||||||
|
$body = @{
|
||||||
|
"displayName" = "Win - Drivers - Ring 2 - UAT"
|
||||||
|
"description" = "" # Empty description field from original JSON
|
||||||
|
"approvalType" = "automatic" # "automatic" from the original JSON
|
||||||
|
"deploymentDeferralInDays" = 3 # "3" from the original JSON
|
||||||
|
"newUpdates" = 0 # "0" from the original JSON
|
||||||
|
"roleScopeTagIds" = @("0") # Role Scope Tag ID from the original JSON
|
||||||
|
}
|
||||||
|
|
||||||
|
$ring = $body.displayName
|
||||||
|
$groupBodyJson = $Body | ConvertTo-Json -Depth 10
|
||||||
|
|
||||||
|
# Send the POST request to create the Driver Update Profile
|
||||||
|
$response = Invoke-MgGraphRequest -Method POST -Uri $uri -Body $groupBodyJson -ContentType "application/json"
|
||||||
|
Write-Host "✅ Successfully created group $ring"
|
||||||
|
|
||||||
|
|
||||||
|
$uri = "https://graph.microsoft.com/beta/deviceManagement/windowsDriverUpdateProfiles"
|
||||||
|
|
||||||
|
# Define the JSON body for the new driver update profile
|
||||||
|
$body = @{
|
||||||
|
"displayName" = "Win - Drivers - Ring 3 - Production"
|
||||||
|
"description" = "" # Empty description field from original JSON
|
||||||
|
"approvalType" = "automatic" # "automatic" from the original JSON
|
||||||
|
"deploymentDeferralInDays" = 10 # "10" from the original JSON
|
||||||
|
"newUpdates" = 0 # "0" from the original JSON
|
||||||
|
"roleScopeTagIds" = @("0") # Role Scope Tag ID from the original JSON
|
||||||
|
}
|
||||||
|
$ring = $body.displayName
|
||||||
|
$groupBodyJson = $Body | ConvertTo-Json -Depth 10
|
||||||
|
|
||||||
|
# Send the POST request to create the Driver Update Profile
|
||||||
|
$response = Invoke-MgGraphRequest -Method POST -Uri $uri -Body $groupBodyJson -ContentType "application/json"
|
||||||
|
Write-Host "✅ Successfully created group $ring"
|
||||||
|
|
||||||
$null = Disconnect-Graph -ErrorAction SilentlyContinue
|
$null = Disconnect-Graph -ErrorAction SilentlyContinue
|
35
UpdateRings.ps1
Normal file
35
UpdateRings.ps1
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Check if the Microsoft Graph PowerShell SDK is installed
|
||||||
|
if (-not (Get-Module -ListAvailable -Name Microsoft.Graph)) {
|
||||||
|
Install-Module -Name Microsoft.Graph -Scope CurrentUser -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
# Check if the Microsoft Graph PowerShell SDK is installed
|
||||||
|
if (-not (Get-Module -ListAvailable -Name Microsoft.Graph.Beta)) {
|
||||||
|
Install-Module -Name Microsoft.Graph.Beta -Scope CurrentUser -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Connect to Microsoft Graph
|
||||||
|
Connect-MgGraph -Scopes "DeviceManagementConfiguration.ReadWrite.All", "Organization.Read.All", "Group.ReadWrite.All", "Directory.ReadWrite.All" -NoWelcome
|
||||||
|
|
||||||
|
$params = @{
|
||||||
|
"@odata.type"= "#microsoft.graph.windowsUpdateForBusinessConfiguration"
|
||||||
|
"displayName"= "Win - OIB - WUfB Drivers - Ring 1 - Pilot - v3.0"
|
||||||
|
"description"= "" # Empty string if description is not needed
|
||||||
|
"automaticUpdateMode"= "autoInstallAndRebootAtMaintenanceTime" # You can adjust based on requirements
|
||||||
|
"qualityUpdatesDeferralPeriodInDays"= 7 # Example deferral value
|
||||||
|
"featureUpdatesDeferralPeriodInDays"= 30 # Example deferral value
|
||||||
|
"allowMicrosoftUpdate"= $true # Enables updates for Microsoft products
|
||||||
|
"roleScopeTagIds"= @("0") # Example role scope tag ID
|
||||||
|
"assignments"= @() # Empty array for assignments
|
||||||
|
}
|
||||||
|
|
||||||
|
# Use the display name from the parameters for identification
|
||||||
|
$ring = $params.displayName
|
||||||
|
|
||||||
|
# Create the driver update profile
|
||||||
|
$null = New-MgDeviceManagementDeviceConfiguration -BodyParameter $params
|
||||||
|
Write-Host "✅ Successfully created $ring"
|
||||||
|
|
||||||
|
|
||||||
|
$null = Disconnect-Graph -ErrorAction SilentlyContinue
|
@ -0,0 +1,239 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:04.8293157Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:04.8293157Z",
|
||||||
|
"name": "Win - ES - Attack Surface Reduction - D - ASR Rules (Audit Mode)",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 2,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "9c7639ec-9ffe-4d87-85c2-2ed1a14ae64f",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "e8c053d6-9f95-42b1-a7f1-ebfd71c67a4b_1",
|
||||||
|
"templateFamily": "endpointSecurityAttackSurfaceReduction",
|
||||||
|
"templateDisplayName": "Attack Surface Reduction Rules",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "19600663-e264-4c02-8f55-f2983216d6d7"
|
||||||
|
},
|
||||||
|
"groupSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "78c83b32-56c0-445a-932a-872d69af6e49"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_2",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "e57db701-c3c6-4264-ab50-7896cb90dfd6",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,239 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:05.3293364Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "DO NOT ASSIGN THIS POLICY WITHOUT VALIDATING VIA AUDIT MODE FIRST!\nhttps://learn.microsoft.com/en-us/defender-endpoint/attack-surface-reduction-rules-deployment-operationalize",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:05.3293364Z",
|
||||||
|
"name": "Win - ES - Attack Surface Reduction - D - ASR Rules (L2)",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 2,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "30a895ab-f29c-4b92-a40c-2759a9fd493b",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "e8c053d6-9f95-42b1-a7f1-ebfd71c67a4b_1",
|
||||||
|
"templateFamily": "endpointSecurityAttackSurfaceReduction",
|
||||||
|
"templateDisplayName": "Attack Surface Reduction Rules",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "19600663-e264-4c02-8f55-f2983216d6d7"
|
||||||
|
},
|
||||||
|
"groupSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_warn",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_warn",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_warn",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_warn",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_audit",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "78c83b32-56c0-445a-932a-872d69af6e49"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_2",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "e57db701-c3c6-4264-ab50-7896cb90dfd6",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,549 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:06.4507617Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:06.4507617Z",
|
||||||
|
"name": "Win - ES - Defender Antivirus - AV Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 27,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "a796d6e2-e924-4410-b3d2-0a32fdad8d0e",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "804339ad-1553-4478-a742-138fb5807418_1",
|
||||||
|
"templateFamily": "endpointSecurityAntivirus",
|
||||||
|
"templateDisplayName": "Microsoft Defender Antivirus",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowarchivescanning",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "7c5c9cde-f74d-4d11-904f-de4c27f72d89"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowarchivescanning_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9ead75d4-6f30-4bc5-8cc5-ab0f999d79f0",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "8eef615a-1aa0-46f4-a25a-12cbe65de5ab"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "905921da-95e2-4a10-9e30-fe5540002ce1",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowcloudprotection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "7da139f1-9b7e-407d-853a-c2e5037cdc70"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowcloudprotection_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "16fe8afd-67be-4c50-8619-d535451a500c",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowemailscanning",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "b0d9ee81-de6a-4750-86d7-9397961c9852"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowemailscanning_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "fdf107fd-e13b-4507-9d8f-db4d93476af9",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "fb36e70b-5bc9-488a-a949-8ea3ac1634d5"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "366c5727-629b-4a81-b50b-52f90282fa2c",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowioavprotection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "fa06231d-aed4-4601-b631-3a37e85b62a0"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowioavprotection_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "df4e6cbd-f7ff-41c8-88cd-fa25264a237e",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f0790e28-9231-4d37-8f44-84bb47ca1b3e"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "0492c452-1069-4b91-9363-93b8e006ab12",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f8f28442-0a6b-4b52-b42c-d31d9687c1cf"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "7b8c858c-a17d-4623-9e20-f34b851670ce",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowscriptscanning",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "000cf176-949c-4c08-a5d4-90ed43718db7"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowscriptscanning_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "ab9e4320-c953-4067-ac9a-be2becd06b4a",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowuseruiaccess",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "0170a900-b0bc-4ccc-b7ce-dda9be49189b"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowuseruiaccess_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "4b6c9739-4449-4006-8e5f-3049136470ea",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_avgcpuloadfactor",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "816cc03e-8f96-4cba-b14f-2658d031a79a"
|
||||||
|
},
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 50,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "37195fb1-3743-4c8e-a0ce-b6fae6fa3acd",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "4fea56e3-7bb6-4ad3-88c6-e364dd2f97b9"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "010779d1-edd4-441d-8034-89ad57a863fe",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_cloudblocklevel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "c7a37009-c16e-4145-84c8-89a8c121fb15"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_cloudblocklevel_2",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "517b4e84-e933-42b9-b92f-00e640b1a82d",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_cloudextendedtimeout",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f61c2788-14e4-4e80-a5a7-bf2ff5052f63"
|
||||||
|
},
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 50,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "608f1561-b603-46bd-bf5f-0b9872002f75",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "14",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_disablecatchupfullscan",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f881b08c-f047-40d2-b7d9-3dde7ce9ef64"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_disablecatchupfullscan_0",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "1b26092f-48c4-447b-99d4-e9c501542f1c",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "15",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_disablecatchupquickscan",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "dabf6781-9d5d-42da-822a-d4327aa2bdd1"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_disablecatchupquickscan_0",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "d263ced7-0d23-4095-9326-99c8b3f5d35b",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "16",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_enablelowcpupriority",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "cdeb96cf-18f5-4477-a710-0ea9ecc618af"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_enablelowcpupriority_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "045a4a13-deee-4e24-9fe4-985c9357680d",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "17",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_enablenetworkprotection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f53ab20e-8af6-48f5-9fa1-46863e1e517e"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_enablenetworkprotection_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "ee58fb51-9ae5-408b-9406-b92b643f388a",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "18",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_puaprotection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "c0135c2a-f802-44f4-9b71-b0b976411b8c"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_puaprotection_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "2d790211-18cb-4e32-b8cc-97407e2c0b45",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "19",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_realtimescandirection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f5ff00a4-e5c7-44cf-a650-9c7619ff1561"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_realtimescandirection_0",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "6b4e3497-cfbb-4761-a152-de935bbf3f07",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_schedulequickscantime",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "784a4af1-33fa-45f2-b945-138b7ff3bcb6"
|
||||||
|
},
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 720,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "5d5c55c8-1a4e-4272-830d-8dc64cd3ac03",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "21",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_signatureupdateinterval",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "89879f27-6b7d-44d4-a08e-0a0de3e9663d"
|
||||||
|
},
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 1,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "0af6bbed-a74a-4d08-8587-b16b10b774cb",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "22",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_submitsamplesconsent",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "bc47ce7d-a251-4cae-a8a2-6e8384904ab7"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_submitsamplesconsent_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "826ed4b6-e04f-4975-9d23-6f0904b0d87e",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "23",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_disablelocaladminmerge",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "5f9a9c65-dea7-4987-a5f5-b28cfd9762ba"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_disablelocaladminmerge_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "3a9774b2-3143-47eb-bbca-d73c0ace2b7e",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "24",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_allowonaccessprotection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "afbc322b-083c-4281-8242-ebbb91398b41"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_allowonaccessprotection_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "ed077fee-9803-44f3-b045-aab34d8e6d52",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "25",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f6394bc5-6486-4728-b510-555f5c161f2b"
|
||||||
|
},
|
||||||
|
"groupSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_remove",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_remove",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_block",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_remove",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "26",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_meteredconnectionupdates",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "7e3aaffb-309f-46de-8cd7-25c1a3b19e5b"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_meteredconnectionupdates_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "20cf972c-be3f-4bc1-93d3-781829d55233",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,343 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:08.6472143Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:08.6472143Z",
|
||||||
|
"name": "Win - ES - Encryption - D - BitLocker (OS Disk)",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 8,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "26082e01-11c7-4084-88e1-8afb4b38106f",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "46ddfc50-d10f-4867-b852-9434254b3bff_1",
|
||||||
|
"templateFamily": "endpointSecurityDiskEncryption",
|
||||||
|
"templateDisplayName": "BitLocker",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesencryptiontype",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "d3e31794-1ce6-4572-ab0c-0c0f9200a509"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "54f346c7-008f-421c-bcb5-40f822bb97fe",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "a5673a18-196d-49a0-a460-a8f35b807b45"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "f742e25d-2f09-41f7-9556-6af75960f42b",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurenontpmstartupkeyusage_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurenontpmstartupkeyusage_name_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesdisallowstandarduserscanchangepin",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "ff95fd7f-52a0-4030-8452-6143352ab487"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesdisallowstandarduserscanchangepin_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "3b874ce3-3254-4db9-ab65-1b591f543ed3",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "5a350519-4bc6-4443-9c4b-6859a054ff83"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "2a756c45-f135-442f-9c01-829a9c9b5407",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_oshiderecoverypage_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_oshiderecoverypage_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osallowdra_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osallowdra_name_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackupdropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackupdropdown_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrequireactivedirectorybackup_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrequireactivedirectorybackup_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackup_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackup_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "d1625438-8db8-424f-b605-cf001b7a2f97"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "7cd99564-6bd0-42c8-be6a-5d92c6c1faaf",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name_4",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name_7",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name_7",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_requiredeviceencryption",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "20ec1f6e-0d7a-4b6f-9a4f-9ed33e69ce51"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_requiredeviceencryption_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "86da5fa5-67cf-48d1-8215-8787a9900ae6",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_allowwarningforotherdiskencryption",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "e40531ee-2225-406b-b07b-1c17186c088c"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_allowwarningforotherdiskencryption_0",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "7d348597-0f2a-43db-9fad-8b55c4f89bfe",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_allowstandarduserencryption",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_bitlocker_allowstandarduserencryption_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "48c938a7-afa0-40ef-914f-40b5da5735b4"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "48278072-3b30-48e9-b654-ad683fdb9aae",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,73 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:08.9583196Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "NOTE: PDE is only applicable to Windows 11 22H2 or higher, Entra-Joined devices and does not work on Windows Pro/Business SKU's:\nhttps://learn.microsoft.com/en-us/windows/security/operating-system-security/data-protection/personal-data-encryption/",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:08.9583196Z",
|
||||||
|
"name": "Win - ES - Encryption - U - Personal Data Encryption",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 1,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "f88dfb26-ea51-4b30-9be0-214b6aba3468",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "0b5708d9-9bc2-49a9-b4f7-ec463fcc41e0_1",
|
||||||
|
"templateFamily": "endpointSecurityDiskEncryption",
|
||||||
|
"templateDisplayName": "Personal Data Encryption",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_pde_enablepersonaldataencryption",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "1ba5dce6-3ba0-40f3-bde3-811ed766c14a"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "user_vendor_msft_pde_enablepersonaldataencryption_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c3620b1d-8ddc-4ca7-a7b5-2a4e7d985be7",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_pde_protectfolders_protectpictures",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_pde_protectfolders_protectpictures_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_pde_protectfolders_protectdocuments",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_pde_protectfolders_protectdocuments_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_pde_protectfolders_protectdesktop",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_pde_protectfolders_protectdesktop_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,418 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:09.6614687Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:09.6614687Z",
|
||||||
|
"name": "Win - ES - Windows Firewall - D - Firewall Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 6,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "10451264-c34e-4947-9783-7b43f079818c",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "6078910e-d808-4a9f-a51d-1b8a7bacb7c0_1",
|
||||||
|
"templateFamily": "endpointSecurityFirewall",
|
||||||
|
"templateDisplayName": "Windows Firewall",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "be9453a7-6348-4112-a49e-ad029d5d3548"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection_2",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "f5e48ffe-d924-4ee1-a1a1-677e259952fa",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "43f5366a-7e27-47a9-be51-d14189d02a17"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop_2",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "bf48ef86-73e5-4a66-a693-24ff8e4be799",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_global_disablestatefulftp",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "38329af6-2670-4a71-972d-482010ca97fc"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_global_disablestatefulftp_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "559f6e01-53a9-4c10-9f10-d09d8fe7f903",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_enablefirewall",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "7714c373-a19a-4b64-ba6d-2e9db04a7684"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_enablefirewall_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "120c5dbe-0c88-46f0-b897-2c996d3e5277",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_defaultinboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_defaultinboundaction_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_defaultoutboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_defaultoutboundaction_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_disableinboundnotifications",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_disableinboundnotifications_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_logmaxfilesize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 16384
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmode_false",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_enablelogdroppedpackets",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_enablelogdroppedpackets_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "120c5dbe-0c88-46f0-b897-2c996d3e5277",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_enablelogsuccessconnections",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_domainprofile_enablelogsuccessconnections_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "120c5dbe-0c88-46f0-b897-2c996d3e5277",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_domainprofile_logfilepath",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"value": "%SystemRoot%\\System32\\logfiles\\firewall\\domainfw.log",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "120c5dbe-0c88-46f0-b897-2c996d3e5277",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_enablefirewall",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "1c14f914-69bb-49f8-af5b-e29173a6ee95"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_enablefirewall_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9d55dfae-d55f-4f2a-af03-9a9524f61e76",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_disableinboundnotifications",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_disableinboundnotifications_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_defaultoutboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_defaultoutboundaction_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_logmaxfilesize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 16384
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_defaultinboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_defaultinboundaction_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9d55dfae-d55f-4f2a-af03-9a9524f61e76",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_enablelogdroppedpackets",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_enablelogdroppedpackets_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9d55dfae-d55f-4f2a-af03-9a9524f61e76",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_enablelogsuccessconnections",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_privateprofile_enablelogsuccessconnections_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9d55dfae-d55f-4f2a-af03-9a9524f61e76",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_privateprofile_logfilepath",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"value": "%SystemRoot%\\System32\\logfiles\\firewall\\privatefw.log",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "9d55dfae-d55f-4f2a-af03-9a9524f61e76",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_enablefirewall",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "e2714734-708e-4286-8ae9-d56821e306a3"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_enablefirewall_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c38694c7-51a4-4a35-8f64-b10866a04776",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_logmaxfilesize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 16384
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalpolicymerge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalpolicymerge_false",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_defaultoutboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_defaultoutboundaction_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_disableinboundnotifications",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_disableinboundnotifications_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_defaultinboundaction",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_defaultinboundaction_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_enablelogignoredrules",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_enablelogignoredrules_false",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_enablelogdroppedpackets",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_enablelogdroppedpackets_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c38694c7-51a4-4a35-8f64-b10866a04776",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_enablelogsuccessconnections",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_enablelogsuccessconnections_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c38694c7-51a4-4a35-8f64-b10866a04776",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_logfilepath",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"value": "%SystemRoot%\\System32\\logfiles\\firewall\\publicfw.log",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c38694c7-51a4-4a35-8f64-b10866a04776",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalipsecpolicymerge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalipsecpolicymerge_false",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c38694c7-51a4-4a35-8f64-b10866a04776",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,117 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:10.012546Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:10.012546Z",
|
||||||
|
"name": "Win - ES - Windows Hello for Business - D - WHfB Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 2,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "ad05e158-f99d-41ef-a8db-6a9aa7b72b90",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "fcef01f2-439d-4c3f-9184-823fd6e97646_1",
|
||||||
|
"templateFamily": "endpointSecurityAccountProtection",
|
||||||
|
"templateDisplayName": "Account Protection",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "0ece2bdc-57c1-4be9-93e9-ac9c395a9c94"
|
||||||
|
},
|
||||||
|
"groupSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "04df0c8b-5d87-494e-865e-6bfeef5a24a5"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "c36f290a-cac2-4a0b-96b8-596a75e4890d",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_minimumpinlength",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 6,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "b2cec844-c747-466e-ae20-92969da2a10c",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}_policies_usecertificateforonpremauth",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_passportforwork_{tenantid}_policies_usecertificateforonpremauth_false",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_passportforwork_biometrics_facialfeaturesuseenhancedantispoofing",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "9a29ce6b-fae8-4785-bbfe-3311f14aa88f"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_passportforwork_biometrics_facialfeaturesuseenhancedantispoofing_true",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "93a7ef59-584d-4177-ac5a-2ca31d47e179",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,110 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:10.4013749Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T08:35:47.1960953Z",
|
||||||
|
"name": "Win - ES - Windows LAPS - D - LAPS Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "e7491c43-58ab-4f88-97cd-976349ddb4d4",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "adc46e5a-f4aa-4ff6-aeff-4f27bc525796_1",
|
||||||
|
"templateFamily": "endpointSecurityAccountProtection",
|
||||||
|
"templateDisplayName": "Local admin password solution (Windows LAPS)",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_laps_policies_backupdirectory",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "a3270f64-e493-499d-8900-90290f61ed8a"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_laps_policies_backupdirectory_1",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "4d90f03d-e14c-43c4-86da-681da96a2f92",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_laps_policies_passwordagedays_aad",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 14,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "4d90f03d-e14c-43c4-86da-681da96a2f92",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_laps_policies_passwordcomplexity",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "8a7459e8-1d1c-458a-8906-7b27d216de52"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_laps_policies_passwordcomplexity_4",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "aa883ab5-625e-4e3b-b830-a37a4bb8ce01",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_laps_policies_passwordlength",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "da7a1dbd-caf7-4341-ab63-ece6f994ff02"
|
||||||
|
},
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"value": 14,
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "d08f1266-5345-4f53-8ae1-4c20e6cb5ec9",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_laps_policies_postauthenticationactions",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "d9282eb1-d187-42ae-b366-7081f32dcfff"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_laps_policies_postauthenticationactions_3",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "68ff4f78-baa8-4b32-bf3d-5ad5566d8142",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,143 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:11.1219482Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "NOTE: Some of these settings require the device to be onboarded to Defender for Endpoint.",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:11.1219482Z",
|
||||||
|
"name": "Win - SC - Defender Antivirus - D - Additional Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 9,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "56293622-678e-4582-b752-5c255f2d7b5c",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_enableconvertwarntoblock",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_enableconvertwarntoblock_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_enablefilehashcomputation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_enablefilehashcomputation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_hideexclusionsfromlocaladmins",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_hideexclusionsfromlocaladmins_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_hideexclusionsfromlocalusers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_hideexclusionsfromlocalusers_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_inteltdtenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_inteltdtenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_oobeenablertpandsigupdate",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_oobeenablertpandsigupdate_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_passiveremediation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_passiveremediation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_quickscanincludeexclusions",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_defender_configuration_quickscanincludeexclusions_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_supportloglocation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "%ProgramData%\\Microsoft\\IntuneManagementExtension\\Logs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:07.1454829Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "Defender Engine & Platform Updates are set to Preview Channel",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:07.1454829Z",
|
||||||
|
"name": "Win - SC - Defender Antivirus Updates - Ring 1 - Pilot",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "b33ffdfe-dd4b-47c9-972d-948db53d69f1",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "e3f74c5a-a6de-411d-aef6-eb15628f3a0a_1",
|
||||||
|
"templateFamily": "endpointSecurityAntivirus",
|
||||||
|
"templateDisplayName": "Defender Update controls",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_engineupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f7e1409d-9c85-4a3f-85a6-ad05cc8ccf13"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_engineupdateschannel_3",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "afc8df70-7b19-4335-b200-bf4b7e098f67",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_platformupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "e78b3ace-75d0-4aad-b3fa-4f49390d6483"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_platformupdateschannel_3",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "d3b0d61a-bdc5-4507-84d0-5f2a4a3e11a5",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "ba273649-e186-4377-89d5-87405bc9a87c"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_0",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "41ea06bf-e94a-482a-9aaa-7fd535fb4150",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:07.4976679Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "Defender Engine & Platform Updates are set to Staged Channel",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:07.4976679Z",
|
||||||
|
"name": "Win - SC - Defender Antivirus Updates - Ring 2 - UAT",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "98dcb06c-30e8-4dfb-80c4-819c711e8b15",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "e3f74c5a-a6de-411d-aef6-eb15628f3a0a_1",
|
||||||
|
"templateFamily": "endpointSecurityAntivirus",
|
||||||
|
"templateDisplayName": "Defender Update controls",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_engineupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f7e1409d-9c85-4a3f-85a6-ad05cc8ccf13"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_engineupdateschannel_4",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "afc8df70-7b19-4335-b200-bf4b7e098f67",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_platformupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "e78b3ace-75d0-4aad-b3fa-4f49390d6483"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_platformupdateschannel_4",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "d3b0d61a-bdc5-4507-84d0-5f2a4a3e11a5",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "ba273649-e186-4377-89d5-87405bc9a87c"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_4",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "41ea06bf-e94a-482a-9aaa-7fd535fb4150",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:08.020785Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "Defender Engine & Platform Updates are set to Broad Channel",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:08.020785Z",
|
||||||
|
"name": "Win - SC - Defender Antivirus Updates - Ring 3 - Production",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm,microsoftSense",
|
||||||
|
"id": "60aaa08c-29c7-4ce6-afff-c7169db780d0",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "e3f74c5a-a6de-411d-aef6-eb15628f3a0a_1",
|
||||||
|
"templateFamily": "endpointSecurityAntivirus",
|
||||||
|
"templateDisplayName": "Defender Update controls",
|
||||||
|
"templateDisplayVersion": "Version 1"
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_engineupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "f7e1409d-9c85-4a3f-85a6-ad05cc8ccf13"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_engineupdateschannel_5",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "afc8df70-7b19-4335-b200-bf4b7e098f67",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_platformupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "e78b3ace-75d0-4aad-b3fa-4f49390d6483"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_platformupdateschannel_5",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "d3b0d61a-bdc5-4507-84d0-5f2a4a3e11a5",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel",
|
||||||
|
"settingInstanceTemplateReference": {
|
||||||
|
"settingInstanceTemplateId": "ba273649-e186-4377-89d5-87405bc9a87c"
|
||||||
|
},
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"value": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_5",
|
||||||
|
"settingValueTemplateReference": {
|
||||||
|
"settingValueTemplateId": "41ea06bf-e94a-482a-9aaa-7fd535fb4150",
|
||||||
|
"useTemplateDefault": false
|
||||||
|
},
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,523 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:12.1595502Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:12.1595502Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Audit and Event Logging",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 35,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "5763c0b9-33b4-4cf7-8efe-bc1be616ae15",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_channel_logmaxsize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 32768
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_2",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_2_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_channel_logmaxsize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 196608
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_3",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_3_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3_channel_logmaxsize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 32768
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_4",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_4_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_channel_logmaxsize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 32768
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "14",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "15",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "16",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "17",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "18",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "19",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "21",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "22",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "23",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "24",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "25",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "26",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "27",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "28",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "29",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "30",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "31",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_system_auditipsecdriver",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_system_auditipsecdriver_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "32",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_system_auditothersystemevents",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_system_auditothersystemevents_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "33",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "34",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:12.4209362Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:12.4209362Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Config Refresh",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 1,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "71dab9eb-d75c-4d79-9b45-2a954854af73",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_dmclient_provider_{providerid}",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"groupSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_enabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_enabled_true",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_cadence",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 30
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:12.7064482Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:12.7064482Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Enhanced Phishing Protection",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "18186d5a-41ce-465f-a39c-86c533ca5aa8",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_webthreatdefense_notifymalicious",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_webthreatdefense_notifymalicious_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_webthreatdefense_notifypasswordreuse",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_webthreatdefense_notifypasswordreuse_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_webthreatdefense_notifyunsafeapp",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_webthreatdefense_notifyunsafeapp_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_webthreatdefense_serviceenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_webthreatdefense_serviceenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,323 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:13.4408481Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:13.4408481Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Local Security Policies",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 23,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "bf6e4adc-2cdf-4c43-bf30-e9e451946d2b",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictclientsallowedtomakeremotecallstosam",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "O:BAG:BAD:(A;;RC;;;BA)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_5",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_537395200",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "14",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_537395200",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "15",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "16",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "17",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "18",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "19",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "21",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "22",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,70 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:13.7880237Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:13.7880237Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Location and Privacy",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "6dbfb04c-ce44-451b-a81d-22e0ac81eb65",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_privacy_letappsaccesslocation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_forceallowtheseapps",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "windows.immersivecontrolpanel_cw5n1h2txyewy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "Microsoft.OutlookForWindows_8wekyb3d8bbwe"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_system_allowlocation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_system_allowlocation_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,165 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:14.2560905Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:14.2560905Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Login and Lock Screen",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 10,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "f4d4ebff-dd35-4691-999a-a65ef0e74338",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_abovelock_allowcortanaabovelock",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_abovelock_allowcortanaabovelock_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_abovelock_allowtoasts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_abovelock_allowtoasts_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_disablelockscreenappnotifications",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_windowslogon_disablelockscreenappnotifications_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_configautomaticrestartsignondescription",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_configautomaticrestartsignondescription_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_authentication_allowaadpasswordreset",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_authentication_allowaadpasswordreset_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,174 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:14.6985047Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:14.6985047Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Remote Desktop Services and RPC",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 9,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "7e1bbc61-b2d4-4313-ac6d-ad5697869df6",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remoteprocedurecall_rpcendpointmapperclientauthentication",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remoteprocedurecall_rpcendpointmapperclientauthentication_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_donotallowpasswordsaving",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_donotallowpasswordsaving_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_donotallowdriveredirection",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_donotallowdriveredirection_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_promptforpassworduponconnection",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_promptforpassworduponconnection_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_requiresecurerpccommunication",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_requiresecurerpccommunication_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_authentication_policy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_authentication_policy_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,146 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:17.239605Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:17.239605Z",
|
||||||
|
"name": "Win - SC - Device Security - D - Timezone",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "5f641ba8-0308-4555-a41f-d78c07f4bd2a",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_crosssitesyncflags",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_ntpclienteventlogflags",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 3
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_ntpserver",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "time.windows.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_resolvepeerbackoffmaxtimes",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 7
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_resolvepeerbackoffminutes",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 15
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_specialpollinterval",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 1024
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type_allsync",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpclient",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpclient_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_userrights_changetimezone",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*S-1-5-19"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*S-1-5-32-544"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*S-1-5-32-545"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,128 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:19.61118Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "WARNING: Applying this policy to Devices will cause a reboot between Device and User ESP phases!\nNOTE: These features are automatically enabled on a fresh Win11 22H2 or above install, however they require Windows Enterprise to function correctly. They also require hardware support: \nhttps://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/oem-vbs",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:19.61118Z",
|
||||||
|
"name": "Win - SC - Device Security - U - Device Guard, Credential Guard and HVCI",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 8,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "0f90b2f2-87a4-44c3-9142-f51033809ece",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deviceguard_lsacfgflags",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deviceguard_lsacfgflags_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deviceguard_machineidentityisolation_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_virtualizationbasedtechnology_requireuefimemoryattributestable",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_virtualizationbasedtechnology_requireuefimemoryattributestable_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,224 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:20.4594591Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:20.4594591Z",
|
||||||
|
"name": "Win - SC - Device Security - U - Power and Device Lock",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 12,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "86ff87c5-cfea-4d67-9d1b-0c0a460e4b46",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_allowstandbystateswhensleepingonbattery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_allowstandbystateswhensleepingonbattery_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_allowstandbywhensleepingpluggedin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_allowstandbywhensleepingpluggedin_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakesonbattery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakesonbattery_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakespluggedin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakespluggedin_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_standbytimeoutonbattery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_standbytimeoutonbattery_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_standbytimeoutonbattery_enterdcstandbytimeout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 600
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin_enteracstandbytimeout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 900
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery_entervideodcpowerdowntimeout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 300
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin_entervideoacpowerdowntimeout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 600
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_wininit_hiberboot",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_wininit_hiberboot_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_allowhibernate",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_power_allowhibernate_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_unattendedsleeptimeoutonbattery",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 600
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_power_unattendedsleeptimeoutpluggedin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 900
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,160 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:21.2251157Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:21.2251157Z",
|
||||||
|
"name": "Win - SC - Device Security - U - Windows Spotlight and Org Messages",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 5,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "b4ec5488-0665-4f08-b21b-19b03694df9a",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowspotlightcollection",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowwindowsspotlight",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowwindowsspotlight_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_experience_allowwindowstips",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_experience_allowwindowstips_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_experience_enableorganizationalmessages",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,89 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:27.5683781Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:27.5683781Z",
|
||||||
|
"name": "Win - SC - Microsoft Accounts - D - Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 5,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "a10b1343-f833-46cf-b0fc-5143008bc55b",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_accounts_allowaddingnonmicrosoftaccountsmanually",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_accounts_allowaddingnonmicrosoftaccountsmanually_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountconnection",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountconnection_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_appruntime_allowmicrosoftaccountstobeoptional",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_appruntime_allowmicrosoftaccountstobeoptional_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_admx_msapolicy_microsoftaccount_disableuserauth",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_admx_msapolicy_microsoftaccount_disableuserauth_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,571 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:28.6584378Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:28.6584378Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - D - Security",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 37,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "3096bfb2-05e7-452d-9187-037094360d33",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "14",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "15",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "16",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "17",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "18",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "19",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "21",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "22",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "23",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "24",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "25",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "26",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_authschemes",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "ntlm,negotiate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "27",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "28",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "29",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "30",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "31",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "32",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "33",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "34",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "35",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "36",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,268 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:29.2365794Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:29.2365794Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - D - Updates",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 12,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "a68864b2-e6e4-4b9c-a69a-300ac1039f24",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_5",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_createdesktopshortcutmicrosoftedge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_createdesktopshortcutmicrosoftedge_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel_stable",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_part_ecscontrol",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_part_ecscontrol_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy_5",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_part_updatepolicy",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_part_updatepolicy_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod_part_autoupdatecheckperiod",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 240
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,107 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:29.6391234Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:29.6391234Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - U - Extensions",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "cc80d07d-287f-48fb-9533-1c3248cbb52a",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_extensioninstallforcelistdesc",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "nkbndigcebkoaejohleckhekfmcecfja"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "ofefcgjbeghpigppfmkologfjadafddi"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_extensioninstallblocklistdesc",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,87 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:29.9195005Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:29.9195005Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - U - Password Management",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "252f2109-d5c7-4dba-afd5-6aa76b43be01",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,139 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:30.2953936Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:30.2953936Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - U - Profiles, Sign-In and Sync",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 8,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "d8a94d49-bc32-4115-a3b6-4edf5c29c5c4",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,228 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:30.8414091Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:30.8414091Z",
|
||||||
|
"name": "Win - SC - Microsoft Edge - U - User Experience",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 14,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "d14903cf-fcbc-421b-9c91-8a7215cf6715",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,97 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:31.1935119Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:31.1935119Z",
|
||||||
|
"name": "Win - SC - Microsoft Office - D - Updates",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "3cf0e816-3779-485b-8e4d-94e1020985c0",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v5~policy~l_microsoftofficemachine~l_updates_l_preventbinginstall",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_office16v5~policy~l_microsoftofficemachine~l_updates_l_preventbinginstall_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_enableautomaticupdates",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_enableautomaticupdates_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideenabledisableupdates",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideenabledisableupdates_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_localodtpath",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_fallbacktocdn",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_fallbacktocdn_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,406 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:32.0060378Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:32.0060378Z",
|
||||||
|
"name": "Win - SC - Microsoft Office - U - Config and Experience",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 26,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "9f0c4244-517b-42c0-9901-ca96cb7ab469",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_51",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_turnofffileformatcompatiblitydialogforods",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_turnofffileformatcompatiblitydialogforods_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disablemovie",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disablemovie_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disableofficefirstrun",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disableofficefirstrun_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v10~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_allownonadminuserinstalllaps",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v10~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_allownonadminuserinstalllaps_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings_l_disableproofingtoolsadvertisement",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings_l_disableproofingtoolsadvertisement_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v18~policy~l_microsoftofficesystem~l_miscellaneous437_l_linksopenrightdefaultsettingisnative",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v18~policy~l_microsoftofficesystem~l_miscellaneous437_l_linksopenrightdefaultsettingisnative_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 137
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_suppressrecommendedsettingsdialog",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_suppressrecommendedsettingsdialog_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v7.updates~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v7.updates~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_disableoptinwizard",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_disableoptinwizard_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "12",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_enablecustomerexperienceimprovementprogram",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_enablecustomerexperienceimprovementprogram_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "13",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactive",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactive_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "14",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadshardnonmailfolders",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadshardnonmailfolders_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "15",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_configurecachedexchangemode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_configurecachedexchangemode_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "16",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_includeonlinemodegalinanr",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_includeonlinemodegalinanr_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "17",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v3~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preferprovidedemailinautodiscoverauthprompts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v3~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preferprovidedemailinautodiscoverauthprompts_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "18",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventnondefaultexchangeaccounts",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventnondefaultexchangeaccounts_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "19",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_turnoffrssfeature",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_turnoffrssfeature_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookmobilehyperlink",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookmobilehyperlink_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "21",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_makeoutlookthedefaultprogramforemailcontactsandcalendar",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_makeoutlookthedefaultprogramforemailcontactsandcalendar_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "22",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1_27",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "23",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_turnofffileformatcompatiblitydialogforodp",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_turnofffileformatcompatiblitydialogforodp_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "24",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "25",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_donotdisplayfileformatcompatiblitydialogforodt",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_donotdisplayfileformatcompatiblitydialogforodt_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,322 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:32.6310627Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:32.6310627Z",
|
||||||
|
"name": "Win - SC - Microsoft OneDrive - D - Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 10,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "cc1abfb7-c696-465e-8552-bee524a38759",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist_allowtenantlistbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "$tenantId"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_enableautomaticuploadbandwidthmanagement",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_enableautomaticuploadbandwidthmanagement_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablesyncadminreports",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablesyncadminreports_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo_enableodignorelistfromgpolistbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingCollectionValue": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.accdb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.appx"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.bat"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.cmd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.exe"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.img"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.iso"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.jar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.lnk"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.mdb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.msi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.pst"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.reg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.vbs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.vhd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.vhdx"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "*.vmdk"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmblockoptout",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmblockoptout_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown_5",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_1",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_desktop_checkbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_desktop_checkbox_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_documents_checkbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_documents_checkbox_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_pictures_checkbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_pictures_checkbox_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_textbox",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationStringSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "$tenantId"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_silentaccountconfig",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_silentaccountconfig_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_filesondemandenabled",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_filesondemandenabled_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T10:27:32.6257581Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T10:52:32.1746771Z",
|
||||||
|
"name": "Win - SC - Microsoft OneDrive - U - Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 3,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "3f681b67-1452-4ee8-8547-354eb57a6c7a",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableholdthefile",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableholdthefile_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablefretutorial",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablefretutorial_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepersonalsync",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepersonalsync_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -4,7 +4,7 @@
|
|||||||
"creationSource": null,
|
"creationSource": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
"lastModifiedDateTime": "2025-02-05T23:10:06.2132942Z",
|
"lastModifiedDateTime": "2025-02-05T23:10:06.2132942Z",
|
||||||
"name": "Windows LAPS - Enable Administrator Account",
|
"name": "Win - SC - Windows LAPS - D - LAPS Enable Administrator",
|
||||||
"platforms": "windows10",
|
"platforms": "windows10",
|
||||||
"priorityMetaData": null,
|
"priorityMetaData": null,
|
||||||
"roleScopeTagIds": [
|
"roleScopeTagIds": [
|
@ -0,0 +1,180 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:34.3512371Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:34.3512371Z",
|
||||||
|
"name": "Win - SC - Windows Update for Business - D - Delivery Optimisation",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 12,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "18251355-0f17-48b9-85d7-575467bc0b66",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_doabsolutemaxcachesize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_5",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_domaxcacheage",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_domaxcachesize",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "6",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dominbackgroundqos",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 500
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dominbatterypercentageallowedtoupload",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 40
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dominfilesizetocache",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 10
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "9",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dominramallowedtopeer",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "10",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_domonthlyuploaddatacap",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"simpleSettingValue": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValue",
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "11",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:34.9573244Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:34.9573244Z",
|
||||||
|
"name": "Win - SC - Windows Update for Business - D - Restart Warnings",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 4,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "e9158777-1e53-417c-93c9-9cd5d12c35e4",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_v2",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_15",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update_autorestartrequirednotificationdismissal",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update_autorestartrequirednotificationdismissal_2",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_v2",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_60",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_update_schedulerestartwarning",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_update_schedulerestartwarning_8",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:35.3010891Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:35.3010891Z",
|
||||||
|
"name": "Win - SC - Windows User Experience - D - Feature Configuration",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 6,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "9518ec57-65d8-41f7-bcb1-dae0555c1e3f",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_filesystem_enabledevdrive",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_filesystem_enabledevdrive_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_experience_configurechaticon",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_experience_configurechaticon_3",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_search_allowcloudsearch",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_search_allowcloudsearch_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_search_allowindexingencryptedstoresoritems",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_search_allowindexingencryptedstoresoritems_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_search_disableremovabledriveindexing",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_search_disableremovabledriveindexing_1",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "device_vendor_msft_policy_config_newsandinterests_allownewsandinterests",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "device_vendor_msft_policy_config_newsandinterests_allownewsandinterests_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/configurationPolicies/$entity",
|
||||||
|
"createdDateTime": "2025-03-16T05:44:35.5278732Z",
|
||||||
|
"creationSource": null,
|
||||||
|
"description": "",
|
||||||
|
"lastModifiedDateTime": "2025-03-16T05:44:35.5278732Z",
|
||||||
|
"name": "Win - SC - Windows User Experience - U - Copilot",
|
||||||
|
"platforms": "windows10",
|
||||||
|
"priorityMetaData": null,
|
||||||
|
"roleScopeTagIds": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"settingCount": 1,
|
||||||
|
"technologies": "mdm",
|
||||||
|
"id": "67e6c408-ba0c-4eff-9d51-da9ce900d95a",
|
||||||
|
"templateReference": {
|
||||||
|
"templateId": "",
|
||||||
|
"templateFamily": "none",
|
||||||
|
"templateDisplayName": null,
|
||||||
|
"templateDisplayVersion": null
|
||||||
|
},
|
||||||
|
"settings": [
|
||||||
|
{
|
||||||
|
"id": "0",
|
||||||
|
"settingInstance": {
|
||||||
|
"@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance",
|
||||||
|
"settingDefinitionId": "user_vendor_msft_policy_config_windowsai_turnoffwindowscopilot",
|
||||||
|
"settingInstanceTemplateReference": null,
|
||||||
|
"choiceSettingValue": {
|
||||||
|
"settingValueTemplateReference": null,
|
||||||
|
"value": "user_vendor_msft_policy_config_windowsai_turnoffwindowscopilot_0",
|
||||||
|
"children": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user