diff --git a/ADMXExample.png b/ADMXExample.png new file mode 100644 index 0000000..8b6513a Binary files /dev/null and b/ADMXExample.png differ diff --git a/ADMXImport.md b/ADMXImport.md new file mode 100644 index 0000000..1a28b50 --- /dev/null +++ b/ADMXImport.md @@ -0,0 +1,214 @@ +# ADMX Ingestion + +The script can create Custom Profiles based on ADMX ingestion. ADMX ingestion is a way to support existing ADMX files in an MDM environment. Windows uses the [Policy CSP](https://docs.microsoft.com/en-us/windows/client-management/mdm/policy-configuration-service-provider) to apply the configuration. + +Microsoft links: + +* ADMX Ingestion documentation can be found [here](https://docs.microsoft.com/en-us/windows/client-management/mdm/understanding-admx-backed-policies) and [here](https://docs.microsoft.com/en-us/windows/client-management/mdm/enable-admx-backed-policies-in-mdm) +* Additional information including blocked registry keys can be found [here](https://docs.microsoft.com/en-us/windows/client-management/mdm/win32-and-centennial-app-policy-configuration) +* Shema definition documentation can be found [here](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-gpreg/6e10478a-e9e6-4fdc-a1f6-bdd9bd7f2209) +* Old ADMX schema documentation (Vista) including attribute information can be found [here](http://download.microsoft.com/download/5/0/8/5081217f-4a2a-470e-a7fa-5976e40b0839/Group%20Policy%20ADMX%20Syntax%20Reference%20Guide.doc) +* Another schema documentation including attribute information can be found [here](https://docs.microsoft.com/en-us/previous-versions/windows/desktop/policy/admx-schema) + +## ADMX Import + +The **ADMX Import** tool is used for configuring 3rd party applications e.g. Chrome, Google Update etc., These ADMX files are available from the software vendor. An ADMX can be loaded in the tool and all settings can be configured using a similar UI as GPMC. When the ADMX is loaded, the script will look for an ADML file that is either in the same directory or in the en-US subdirectory. An ADML file can also be loaded manually, if another language should be used in the UI. + +![Screenshot](/ADMXExample.png?raw=true) + +The image above shows the the tool after the chrome.admx file was loaded. The tool supports delivering ADMX settings to HKLM (Computer Settings) and HKCU (User Settings). Categories will be added based on the Class attribute for each ADMX policy setting. The *All settings* category will display all the settings for the base category (Computer or User) + +![Screenshot](/ADMXSettingExample.png?raw=true) + +A policy setting can either be edited via double-clicking an item or right-clicking and select Edit. + +The *Intune OMA-URI name* property specifies the name of the OMA-URI row in the Custom Profile. This is optional and if it is not specified, the script will use the name of the policy. + +A policy must be set to Enabled before any changes can be made. The *Policy* tab will list all possible settings for the policy. This could be a dropdown box, text box, check box, numeric up-down box etc. The script creates the controls based on the presentation settings in the ADML file. An ADML is not mandatory but the controls and the UI could cause unpredictive results. Always use the associated ADML for correctly generated controls. + +![Screenshot](/ADMXSettingExampleOMAURI.png?raw=true) + +The *OMA-URI Settings* tab contains the configured settings. This is the string that will be added to the enabled policy. This can be manually configure in case there is something that is not supported by the script. Do **NOT** add or to this text box. The script will add that automatically. If *Manual configuration* is checked, the script will upload the text as it is specified, including additional manual changes. If it is not checked, the script will generate the text when importing the profile. If manual configuration is added and then checkbox is cleared, those changes will be lost during the upload. + +The *XML Definition* tab contains the XML node for the ADMX policy. This is used for reference in case manual configuration is required. + +![Screenshot](/ADMXImportSetting.png?raw=true) + +The *Import* tab is used for creating the Custom Profile in Intune. The *Custom Profile Name* is mandatory and specifies the name of the profile. + +The *ADMX Policy File Name* is mandatory and this should be a globally unique name. This will generate an ADMX file on the client. See the Deep Dive section for more information. + +The *ADMX App Id* is mandatory and this does not have to be unique but it is recommended in some circumstances e.g. if multiple versions of the Chrome ADMX file is uploaded, it is recommended to add the version to the *ADMX Policy File Name* and *ADMX App Id* e.g. Chrome91. See the Deep Dive section for more information. + +The *Ingest ADMX file* is checked by default and this will included the ADMX file ingestion in the Custom Profile. If there will be multiple Custom Profiles based on the same ADMX file, it might be better to have one Custom Profile for the ADMX ingestion and one separate Custom Profile for each of the settings. This requires that the same *ADMX App Id* is used for each Custom Profile that is based in the ingested ADMX file. + + The *OMA-URI Name for the ADMX ingestion* specifies the name of the OMA-URI row inside the Custom Profile. This is optional. It will be set to a value based on the loaded file name by default e.g. chrome.admx Ingestion. + +The *Import* button will create the Custom Profile in Intune. There is no visual information if the profile was created successfully but the log will display the name and id of the created profile. A message box will be displayed if it fails to create the Custom Profile. + +## Reg Values + +The **Reg Values** tool can be used to create registry values in HKLM and HKCU. This uses the same functionality as the ADMX Import tool; ADMX ingestion. The difference is that the Reg Values tool builds the ADMX file in the background based on the added registry values. There are some benefits of using this over a PowerShell script e.g. Intune will state if the registry keys were applied successfully and if a conflict or an error occurred. + +![Screenshot](/ADMXRegValuePolicy.png?raw=true) + +The initial screen include the options of specifying the Custom Profile name and description. The *Policy type* can either be Policy or Preferences. See Known Issues and Limitations for more information about policy types. + +The *Added reg values* list contains the ADMX policies. Each ADMX policy can contain one or more registry values. + +The top part of the *Add new reg policy* form specifies the attributes on the policy node in the ADMX file. The *Policy name* identifies the policy. This cannot contain any spaces. The *Policy status* property specifies if the policy should be enabled or disabled. The hive and the key properties specifies where the registry values should be added. The *Reg key* property is a global value for all added registry values in the bottom section. + +The *Policy value* is an optional value. This should only be used if the registry policy should add a value that specifies if it is enabled/disable e.g. 1 or 0. This will use the enabledValue and disabledValue nodes in the background. If this value is specified, a registry value (DWORD) will be set to 1 when the policy is enabled or 0 if the policy is disabled. + +The lower part of the form specifies individual registry values. The tool support creating/setting the following type of registry values: + +* String +* Expanded string (String with Expanded checked) +* Multi-string +* DWORD +* List - a key/value string list. Each key will be a string value. + +The *Key* property is not required unless the value is located in a different location than specified in the *Reg key* property. This is used when specifying values for the List type. The List type values will then be added to a separate key. + +**Note:** The List type does not support specifying the value name since all values are creating in a separate key. + +*Value name* and *Value* properties specifies the values that should be created in the registry. + +Modify existing values by double-clicking on the value in the *Added reg values* list. + +The *Additional value settings* section has additional settings for a policy type. This can be used to create a REG_EXPAND_SZ instead of a REG_SZ etc. + +**Note:** The *Do not overwrite value* will set the soft attribute. This does **NOT** work, at least not outside the Software\Policies area on a cloud only joined device. This property is kept until more testing can confirm that it doesn't work at all. + +Example of setting registry values for a device and a user: + +![Screenshot](/RegPolicyHKCU.png?raw=true) + +Example of adding HKCU settings + +![Screenshot](/RegPolicyHKLM.png?raw=true) + +Example of adding HKLM settings + +![Screenshot](/RegADMXFileContent.png?raw=true) + +Example of generated ADMX file + +![Screenshot](/RegValueIntuneProfile.png?raw=true) + +Example of the created Custom Profile created. + +![Screenshot](/RegProfileADMXIngestion.png?raw=true) + +Example of the OMA-URI row for ADMX ingestion for a custom registry value. + +![Screenshot](/RegProfileOMAURISetting.png?raw=true) + +Example of the OMA-URI row for specifying the registry values to set. + +![Screenshot](/RegValuesHKCU.png?raw=true) + +Example of the implemented HKCU settings for a user + +![Screenshot](/RegValuesHKLM.png?raw=true) + +Example of the implemented HKLM settings for a device + +![Screenshot](/RegValuesHKLMList.png?raw=true) + +Example of the List type implementation on a device + +## Deep Dive + +The [Policy CSP](https://docs.microsoft.com/en-us/windows/client-management/mdm/policy-configuration-service-provider) is used when ingesting ADMX files. When a Custom Profile with ADMX ingestion is assigned to a device, the Policy CSP will add information about the ADMX file in the registry and create an ADMX file in the file system. + +**ADMX ingestion:** + +An ADMX is ingested by using the following OMA-URI path: + +./device/Vendor/MSFT/Policy/ConfigOperations/ADMXInstall//[Policy|Preference]/ + +Example: + +./device/Vendor/MSFT/Policy/ConfigOperations/ADMXInstall/Chrome/Policy/ChromeAdmx + +This will generate an ADMX file, ChromeAdmx.admx, in the following folder on the device: + +%ProgramData%\Microsoft\PolicyManager\ADMXIngestion\\\\\\[Policy|Preference] + +The Reg Values tool will always use IntuneManagementReg as AppId. Each uploaded reg policy will have a unique named ADMX file, RegPolicy_. + +The Policy CSP will create multiple registry values under HKLM\Software\Microsoft\PolicyManager + +The ADMXDefault part will contain each Category, with full path, specified in the ADMX file. This is why the AppID must be unique when using multiple versions of the same admx file since each of these files will have the same category IDs e.g. each Chrome version should be named based on the version like Chromev91. + +![Screenshot](/RegADMXDefault.png?raw=true) + +**Note:** If the same ADMX filename is used, the first file saved will win. It looks like Intune will not overwrite an existing ADMX file. That is why a unique name must be specified when different versions of the ADMX file is used. + +There is an additional registry key added for the ADMX ingestion. Each ingested file will generate a key under AdmxInstalled. + +AdmxInstalled\\\\\[Policy|Preference]\\ + +Example: + +\SOFTWARE\Microsoft\PolicyManager\AdmxInstalled\D12FCE57-F71E-4D0D-93EE-35C5E6F8C0D9\Chrome\Policy\ChromeAdmx + +This key contains information when it was added, status and how many policies it has. + +**Policy Settings** + +Each setting is added based on the following OMA-URI path: + +./[User|Device]/vendor/msft/policy/config/~[Policy|Preference]~/ + +Example: + +./Device/Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome~Startup/ShowHomeButton + +The CategoryPath is the full path to the category where the setting is defined. Each categoryId is separated with a ~. This should match the registry value specified in the image above in the ADMXDefault key. + +One registry key for each ADMX policy is created under the Provider path (PolicyManager\Provider\\) . This includes the OME-URI settings configured in the Custom Profile. + +![Screenshot](/RegADMXProvider.png?raw=true) + +Applied settings are added to the Current registry key, Current\Device or Current\\ depending if it is for the device or the user. There is one key for each policy category. + +![Screenshot](/RegADMXCurrent.png?raw=true) + +**Troubleshooting** + +The Event Viewer can be used for troubleshooting any issues with ADMX ingestion. The events are added to the following log: + +Application and Services log\Microsoft\Windows\DeviceManagement-Enterprise-Diagnostics-Provider\Admin + +The following events can be used for troubleshooting: + +* 819 - Information: The policy settings was successfully deleted +* 831 - Information: The policy settings was successfully added +* 866 - Information: Update policy (This is followed after a 872 or 873 event) +* 872 - Information: Start updating existing ADMX ingestion +* 873 - Information: Starting new ADMX ingestion +* 865 - Error Catastrophic Failure. This could be that the ADMX is invalid. +* 404 - Error: This is generated for different reason + * Generated after a 865 Catastrophic Failure error + * The system cannot find the file. The CSP cannot file the specified ADMX file. This could happen when ADMX and policies are in separate Custom Profiles and the wrong AppID was specified in the OMA+URI paths or if the policy settings are applied before the ADMX ingestion. +* 454 - Error: This is listed when the Custom Profile is removed and the CSP cannot delete registry values outside Software\Policies. + +## Known Issues and Limitations + +* The created ADMX ingestion profiles has only been tested on cloud only joined devices. +* According to [this](https://docs.microsoft.com/en-us/windows/client-management/mdm/win32-and-centennial-app-policy-configuration) link, policies will NOT be enforced unless the device is domain joined. So only Hybrid devices would support enforced values. This means that all settings on cloud only joined devices will be set as Preference values e.g. set once and never updated. + +**ADMX Import:** + +* Only categories and policy names specified in the loaded ADMX/ADML file will be translated. If the ADMX uses strings outside the loaded ADML file, it might be blank or using the string id. + +**Reg Values** + +* The Preferences type is supported by the tool but tests shows that there is no difference in functionality compared to the Policy type on cloud only joined devices. +* The script will block some registry keys. These keys are blocked by Microsoft and a PowerShell script is required to write to these values. See [this](https://docs.microsoft.com/en-us/windows/client-management/mdm/win32-and-centennial-app-policy-configuration) link for more information. +* Values outside Software\Policies will **NOT** be deleted when the policy is removed. +* The tool supports all ADMX attributes specified in the schema but it looks like some functionalities are not supported by Windows or the Policy CSP e.g. the *soft* attribute should be set to true to avoid overwriting an existing value but all values were overwritten during the tests, even if the soft attribute was set. +* QWORD is not supported. The ADMX schema definition includes longDecimal which would create QWORD values but this is not supported in the Policy CSP. It will generate a Catastrophic Failure event in the Event Log. +* No support for enabledList/disabledList. This might be added in the future since this could make it very easy to create mapped drives via ADMX ingestion. \ No newline at end of file diff --git a/ADMXImportSetting.png b/ADMXImportSetting.png new file mode 100644 index 0000000..ab95d39 Binary files /dev/null and b/ADMXImportSetting.png differ diff --git a/ADMXRegValuePolicy.png b/ADMXRegValuePolicy.png new file mode 100644 index 0000000..5fe819d Binary files /dev/null and b/ADMXRegValuePolicy.png differ diff --git a/ADMXSettingExample.png b/ADMXSettingExample.png new file mode 100644 index 0000000..6ec2fde Binary files /dev/null and b/ADMXSettingExample.png differ diff --git a/ADMXSettingExampleOMAURI.png b/ADMXSettingExampleOMAURI.png new file mode 100644 index 0000000..8be2f71 Binary files /dev/null and b/ADMXSettingExampleOMAURI.png differ diff --git a/Core.psm1 b/Core.psm1 index ca6c3ec..1ec03d0 100644 --- a/Core.psm1 +++ b/Core.psm1 @@ -12,7 +12,7 @@ This module handles the WPF UI function Get-ModuleVersion { - '3.1.4' + '3.1.5' } function Start-CoreApp @@ -1534,7 +1534,7 @@ function Get-JWTtoken } #endregion -function AddGridObject +function Add-GridObject { param($grid, $obj) @@ -1550,6 +1550,117 @@ function Get-IsAdmin (New-Object Security.Principal.WindowsPrincipal ([Security.Principal.WindowsIdentity]::GetCurrent())).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) } +function Get-NumericUpDownControl +{ + param($id, [decimal]$minValue = 0, [decimal]$maxValue = 9999, [int]$step = 1) + + try + { + [xml]$xaml = Get-Content ($global:AppRootFolder + "\Xaml\NumericUpDown.xaml") + $xamlObj = ([Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml))) + + $xamlObj.Name = $id + $xamlObj.Children[0].Name = $id + "_TextBox" + $xamlObj.Children[1].Name = $id + "_UpButton" + $xamlObj.Children[1].Name = $id + "_DownButton" + + $settings = [PSCustomObject]@{ + MinValue = $minValue + MaxValue = $maxValue + Step = $step + _lastKnownValue = $null + } + + $xamlObj | Add-Member -MemberType NoteProperty -Name "Settings" -Value $settings + + $xamlObj.Children[0].Add_TextChanged({ + $val = $null + if([decimal]::TryParse($this.Parent.Children[0].Text, [ref]$val)) + { + $this.Parent.Settings._lastKnownValue = $val; + } + }) + + $xamlObj.Children[0].Add_LostFocus({ + $val = $null + if([decimal]::TryParse($this.Parent.Children[0].Text, [ref]$val)) + { + ; + } + elseif($this.Parent.Settings._lastKnownValue) + { + $val = $this.Parent.Settings._lastKnownValue + } + + if($val -ne $null) + { + if($val -gt $this.Parent.Settings.MaxValue) + { + $val = $this.Parent.Settings.MaxValue + } + elseif($val -lt $this.Parent.Settings.MinValue) + { + $val = $this.Parent.Settings.MinValue + } + $this.Parent.Children[0].Text = $val.ToString() + } + }) + + $xamlObj.Children[1].Add_Click({ + $val = $null + if([decimal]::TryParse($this.Parent.Children[0].Text, [ref]$val)) + { + $val = $val + $this.Parent.Settings.Step + if($val -gt $this.Parent.Settings.MaxValue) + { + $val = $this.Parent.Settings.MaxValue + } + $this.Parent.Children[0].Text = $val.ToString() + } + }) + + $xamlObj.Children[2].Add_Click({ + $val = $null + if([decimal]::TryParse($this.Parent.Children[0].Text, [ref]$val)) + { + $val = $val - $this.Parent.Settings.Step + if($val -lt $this.Parent.Settings.MinValue) + { + $val = $this.Parent.Settings.MinValue + } + $this.Parent.Children[0].Text = $val.ToString() + } + }) + + return $xamlObj + + } + catch + { + Write-LogError "Failed to create NumericUpDown control" $_.Exception + return $null + } + +} + +function Format-XML +{ + param([xml]$xml, $indent = 2) + + if(-not $xml) { return } + + #From: https://devblogs.microsoft.com/powershell/format-xml/ + $StringWriter = New-Object System.IO.StringWriter + $XmlWriter = New-Object System.XMl.XmlTextWriter $StringWriter + $xmlWriter.Formatting = "indented" + $xmlWriter.Indentation = $Indent + $xml.WriteContentTo($XmlWriter) + $XmlWriter.Flush() + $StringWriter.Flush() + $StringWriter.ToString() +} + + New-Alias -Name ?? -value Invoke-Coalesce New-Alias -Name ?: -value Invoke-IfTrue Export-ModuleMember -alias * -function * \ No newline at end of file diff --git a/Documentation.md b/Documentation.md index 3093aa6..df14af9 100644 --- a/Documentation.md +++ b/Documentation.md @@ -95,7 +95,7 @@ Json files for translating property objects to documentation is located in the D The generated files sometimes requires additional manually created properties. These could be properties in the UI that has a Yes/No, Enabled/Not Configured etc. trigger associated with a specific value. These properties must be manually added to the object before the documentation. The `DocumentationCustom.psm1` file takes care of this. This file is also used for overriding the documentation of specific values and other custom required processing. -The json files contains a definition of each property to document. This includes information like type e.g. Boolean (Yes/No, Allow/Block, Enabled/Disabled etc.), Options, DataTable etc. The script will use these files to translate each property into PSCustomObject that is then used by the output provider. The functionality of these files has been extended to enhance the documentation options for the manually created files. Data types of 100 or above is custom functionality. All data types below 100 is based on the same functionality as in the Intune portal. The data type engine in the script is created based on best effort of the generated json files. +The json files contains a definition of each property to document. This includes information like type e.g. Boolean (Yes/No, Allow/Block, Enabled/Disabled etc.), Options, DataTable etc. The script will use these files to translate each property into a PSCustomObject that is then used by the output provider. The functionality of these files has been extended to enhance the documentation options for the manually created files. Data types of 100 or above is custom functionality. All data types below 100 is based on the same functionality as in the Intune portal. The data type engine in the script is created based on best effort of the generated json files. The `DocumentationCustom.psm1` file also takes care of custom documentation for some object types e.g. Conditional Access. App Configuration policies etc. These objects are documented via a PowerShell function in the script. @@ -136,7 +136,7 @@ Documentation providers has a Priority property. This defines in what order the **Documentation Output Provider** -Once the script has finished gathering all the data of an object, it sends it to the Documentation Output provider. This will then document it to the specific output type of the provider. Word and CSV are included. There is also a "None" provider as included. This will only add the gathered information in the UI. This is used for quick information or when building the translation files. This is also used by the comparison functionality. +Once the script has finished gathering all the data of an object, it sends it to the Documentation Output provider. This will then document it to the specific output type of the provider. Word and CSV are included. There is also a "None" provider included. This will only add the gathered information in the UI. This is used for quick information or when building the translation files. This is also used by the comparison functionality. The`DocumentationWord.psm1` and `DocumentationWordOptions.xaml` files are example on how to create an output provider. The xaml file contains the configuration options in the UI. The psm1 file registers the provider and builds the Word document based on the gathered information. diff --git a/Documentation/CategoryId.json b/Documentation/CategoryId.json index f4222a1..7c59c6e 100644 --- a/Documentation/CategoryId.json +++ b/Documentation/CategoryId.json @@ -1,4 +1,4 @@ -{ +{ "0": "AirPlay", "1": "AirPrint", "2": "AndroidDeviceOwnerApplications", @@ -129,18 +129,19 @@ "127": "VPNIKEv2", "128": "VPNProxy", "129": "VPNTrustedNetwork", - "130": "WebContentFilter", - "131": "XboxServices", - "132": "DomainJoin", - "133": "WindowsDefenderAtp", - "134": "WindowsHelloForBusiness", - "135": "DeviceFirmwareConfigurationInterface", - "136": "ZebraMx", - "137": "AndroidDefenderAtp", - "138": "MacDefenderAtp", - "139": "UserRights", - "140": "WiredNetwork", - "141": "DefenderAntivirus", - "142": "CustomCompliance", - "143": "IosDefenderAtp" + "130": "VPNCustomData", + "131": "WebContentFilter", + "132": "XboxServices", + "133": "DomainJoin", + "134": "WindowsDefenderAtp", + "135": "WindowsHelloForBusiness", + "136": "DeviceFirmwareConfigurationInterface", + "137": "ZebraMx", + "138": "AndroidDefenderAtp", + "139": "MacDefenderAtp", + "140": "UserRights", + "141": "WiredNetwork", + "142": "DefenderAntivirus", + "143": "CustomCompliance", + "144": "IosDefenderAtp" } diff --git a/Documentation/ObjectCategories.json b/Documentation/ObjectCategories.json index e710f51..0f350b5 100644 Binary files a/Documentation/ObjectCategories.json and b/Documentation/ObjectCategories.json differ diff --git a/Documentation/ObjectInfo/#microsoft.graph.deviceManagementScript.json b/Documentation/ObjectInfo/#microsoft.graph.deviceManagementScript.json index a6d3dd7..d11d107 100644 --- a/Documentation/ObjectInfo/#microsoft.graph.deviceManagementScript.json +++ b/Documentation/ObjectInfo/#microsoft.graph.deviceManagementScript.json @@ -46,9 +46,9 @@ { "nameResourceKey": "WindowsManagement.runAs64BitLabel", "descriptionResourceKey": "WindowsManagement.runAs64BitInfoBalloonContent", - "entityKey": "enforceSignatureCheck", + "entityKey": "runAs32Bit", "dataType": 0, - "booleanActions": 109, + "booleanActions": 110, "category": "WindowsManagement.scriptsettingsTabHeader" } ] \ No newline at end of file diff --git a/Documentation/ObjectInfo/airprint_iosdevicefeatures.json b/Documentation/ObjectInfo/airprint_iosdevicefeatures.json index 686ca0c..752221d 100644 --- a/Documentation/ObjectInfo/airprint_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/airprint_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -41,7 +41,7 @@ ], "entityKey": "ipAddress", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -60,7 +60,7 @@ ], "entityKey": "resourcePath", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -79,7 +79,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -107,7 +107,7 @@ "entityKey": "forceTls", "booleanActions": 0, "defaultValue": "false", - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -123,7 +123,7 @@ ], "entityKey": "airPrintDestinations", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -131,7 +131,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/airprint_macdevicefeatures.json b/Documentation/ObjectInfo/airprint_macdevicefeatures.json index 4dd33e9..101f6ed 100644 --- a/Documentation/ObjectInfo/airprint_macdevicefeatures.json +++ b/Documentation/ObjectInfo/airprint_macdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -41,7 +41,7 @@ ], "entityKey": "ipAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -60,7 +60,7 @@ ], "entityKey": "resourcePath", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -79,7 +79,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -107,7 +107,7 @@ "entityKey": "forceTls", "booleanActions": 0, "defaultValue": "false", - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -123,7 +123,7 @@ ], "entityKey": "airPrintDestinations", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -131,7 +131,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ] diff --git a/Documentation/ObjectInfo/androiddefenderatp_complianceandroid.json b/Documentation/ObjectInfo/androiddefenderatp_complianceandroid.json index f79ac79..e7cb077 100644 --- a/Documentation/ObjectInfo/androiddefenderatp_complianceandroid.json +++ b/Documentation/ObjectInfo/androiddefenderatp_complianceandroid.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 137, + "category": 138, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 137, + "category": 138, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/androiddefenderatp_complianceandroiddeviceowner.json b/Documentation/ObjectInfo/androiddefenderatp_complianceandroiddeviceowner.json index 0451f7f..6972072 100644 --- a/Documentation/ObjectInfo/androiddefenderatp_complianceandroiddeviceowner.json +++ b/Documentation/ObjectInfo/androiddefenderatp_complianceandroiddeviceowner.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 137, + "category": 138, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 137, + "category": 138, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/androiddefenderatp_complianceandroidforwork.json b/Documentation/ObjectInfo/androiddefenderatp_complianceandroidforwork.json index 7de7fef..fd6a807 100644 --- a/Documentation/ObjectInfo/androiddefenderatp_complianceandroidforwork.json +++ b/Documentation/ObjectInfo/androiddefenderatp_complianceandroidforwork.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 137, + "category": 138, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 137, + "category": 138, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/applicationguard_windows10endpointprotection.json b/Documentation/ObjectInfo/applicationguard_windows10endpointprotection.json index 4b4005b..514bfee 100644 --- a/Documentation/ObjectInfo/applicationguard_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/applicationguard_windows10endpointprotection.json @@ -11,7 +11,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -72,7 +72,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -116,7 +116,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -160,7 +160,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -176,7 +176,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -194,7 +194,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -236,7 +236,7 @@ ], "entityKey": "applicationGuardPrintSettings", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -247,7 +247,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -265,7 +265,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -283,7 +283,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -301,7 +301,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -319,7 +319,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -330,7 +330,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -391,7 +391,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -435,7 +435,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -479,7 +479,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -495,7 +495,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -513,7 +513,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -555,7 +555,7 @@ ], "entityKey": "applicationGuardPrintSettings", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -566,7 +566,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -584,7 +584,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -602,7 +602,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -620,7 +620,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -638,7 +638,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -658,7 +658,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json b/Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json index ec48880..93e97e9 100644 --- a/Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json +++ b/Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -47,7 +47,7 @@ ], "entityKey": "appStoreUrl", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -66,7 +66,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -84,7 +84,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -102,7 +102,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -119,7 +119,7 @@ ], "entityKey": "compliantAppsList", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -144,7 +144,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -152,7 +152,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/applicationrestrictions_macgeneral.json b/Documentation/ObjectInfo/applicationrestrictions_macgeneral.json index 0119d76..77c90f0 100644 --- a/Documentation/ObjectInfo/applicationrestrictions_macgeneral.json +++ b/Documentation/ObjectInfo/applicationrestrictions_macgeneral.json @@ -30,7 +30,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -48,7 +48,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -66,7 +66,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } @@ -83,7 +83,7 @@ ], "entityKey": "compliantAppsList", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -108,7 +108,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -116,7 +116,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } diff --git a/Documentation/ObjectInfo/applicationrestrictions_windowsphonegeneral.json b/Documentation/ObjectInfo/applicationrestrictions_windowsphonegeneral.json index 0751f35..4ebc13a 100644 --- a/Documentation/ObjectInfo/applicationrestrictions_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/applicationrestrictions_windowsphonegeneral.json @@ -22,7 +22,7 @@ ], "entityKey": "appStoreUrl", "booleanActions": 0, - "policyType": 100, + "policyType": 101, "enabled": true } }, @@ -40,7 +40,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 100, + "policyType": 101, "enabled": true } }, @@ -58,7 +58,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 100, + "policyType": 101, "enabled": true } } @@ -75,7 +75,7 @@ ], "entityKey": "compliantAppsList", "booleanActions": 0, - "policyType": 100, + "policyType": 101, "enabled": true } ], @@ -100,7 +100,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 100, + "policyType": 101, "enabled": true } } diff --git a/Documentation/ObjectInfo/applications_windows10general.json b/Documentation/ObjectInfo/applications_windows10general.json index 4a4f73a..08cb661 100644 --- a/Documentation/ObjectInfo/applications_windows10general.json +++ b/Documentation/ObjectInfo/applications_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "windowsStoreBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "windowsStoreBlockAutoUpdate", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -63,7 +63,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -95,7 +95,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -112,7 +112,7 @@ "entityKey": "sharedUserAppDataAllowed", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -129,7 +129,7 @@ "entityKey": "windowsStoreEnablePrivateStoreOnly", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -146,7 +146,7 @@ "entityKey": "appsBlockWindowsStoreOriginatedApps", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -163,7 +163,7 @@ "entityKey": "storageRestrictAppDataToSystemVolume", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -180,7 +180,7 @@ "entityKey": "storageRestrictAppInstallToSystemVolume", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -197,7 +197,7 @@ "entityKey": "gameDvrBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -214,7 +214,7 @@ "entityKey": "smartScreenEnableAppInstallControl", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -255,7 +255,7 @@ "entityKey": "smartScreenAppInstallControl", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -282,7 +282,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -309,7 +309,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -327,7 +327,7 @@ "entityKey": "appManagementPackageFamilyNamesToLaunchAfterLogOn", "booleanActions": 0, "defaultValue": "", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/applications_windowsphonegeneral.json b/Documentation/ObjectInfo/applications_windowsphonegeneral.json index ac63400..6a90b4b 100644 --- a/Documentation/ObjectInfo/applications_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/applications_windowsphonegeneral.json @@ -13,7 +13,7 @@ "entityKey": "windowsStoreBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true } } diff --git a/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json b/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json index 64879d6..7a5a2e8 100644 --- a/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json +++ b/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json @@ -27,7 +27,7 @@ "entityKey": "contactsAllowUnmanagedToManagedRead", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -37,7 +37,7 @@ "entityKey": "documentsBlockManagedDocumentsInUnmanagedApps", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -54,7 +54,7 @@ "entityKey": "airDropForceUnmanagedDropTarget", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -70,7 +70,7 @@ "entityKey": "documentsBlockUnmanagedDocumentsInManagedApps", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -78,7 +78,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -103,7 +103,7 @@ "entityKey": "appStoreRequirePassword", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -119,7 +119,7 @@ "entityKey": "appStoreBlockInAppPurchases", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -136,7 +136,7 @@ "entityKey": "iBooksStoreBlockErotica", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -153,7 +153,7 @@ "entityKey": "contactsAllowManagedToUnmanagedWrite", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -224,7 +224,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -285,7 +285,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -301,7 +301,7 @@ ], "entityKey": "mediaContentRatingAustralia", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -348,7 +348,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -408,7 +408,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -464,7 +464,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -480,7 +480,7 @@ ], "entityKey": "mediaContentRatingCanada", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -527,7 +527,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -582,7 +582,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -628,7 +628,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -644,7 +644,7 @@ ], "entityKey": "mediaContentRatingFrance", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -691,7 +691,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -751,7 +751,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -802,7 +802,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -818,7 +818,7 @@ ], "entityKey": "mediaContentRatingGermany", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -865,7 +865,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -930,7 +930,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -981,7 +981,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -997,7 +997,7 @@ ], "entityKey": "mediaContentRatingIreland", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1044,7 +1044,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1099,7 +1099,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1130,7 +1130,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1146,7 +1146,7 @@ ], "entityKey": "mediaContentRatingJapan", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1193,7 +1193,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1273,7 +1273,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1314,7 +1314,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1330,7 +1330,7 @@ ], "entityKey": "mediaContentRatingNewZealand", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1377,7 +1377,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1447,7 +1447,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1478,7 +1478,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1494,7 +1494,7 @@ ], "entityKey": "mediaContentRatingUnitedKingdom", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1541,7 +1541,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1601,7 +1601,7 @@ "entityKey": "movieRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1657,7 +1657,7 @@ "entityKey": "tvRating", "booleanActions": 0, "defaultValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1673,7 +1673,7 @@ ], "entityKey": "mediaContentRatingUnitedStates", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1720,7 +1720,7 @@ "booleanActions": 0, "defaultValue": "allAllowed", "unconfiguredValue": "allAllowed", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1731,7 +1731,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1739,7 +1739,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1770,7 +1770,7 @@ "entityKey": "appStoreBlockUIAppInstallation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1787,7 +1787,7 @@ "entityKey": "appStoreBlockAutomaticDownloads", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1797,7 +1797,7 @@ "entityKey": "appStoreBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1814,7 +1814,7 @@ "entityKey": "iTunesBlockExplicitContent", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1831,7 +1831,7 @@ "entityKey": "gamingBlockGameCenterFriends", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1847,7 +1847,7 @@ "entityKey": "gameCenterBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1864,7 +1864,7 @@ "entityKey": "gamingBlockMultiplayer", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -1881,7 +1881,7 @@ "entityKey": "filesNetworkDriveAccessBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -1889,7 +1889,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/applicationvisibility_iosgeneral.json b/Documentation/ObjectInfo/applicationvisibility_iosgeneral.json index 88dafa9..c68c636 100644 --- a/Documentation/ObjectInfo/applicationvisibility_iosgeneral.json +++ b/Documentation/ObjectInfo/applicationvisibility_iosgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -47,7 +47,7 @@ ], "entityKey": "appStoreUrl", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -66,7 +66,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -84,7 +84,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -102,7 +102,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -119,7 +119,7 @@ ], "entityKey": "appsVisibilityList", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -144,7 +144,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -152,7 +152,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/appsandexperience_windows10teamgeneral.json b/Documentation/ObjectInfo/appsandexperience_windows10teamgeneral.json index 5b0d608..e588b63 100644 --- a/Documentation/ObjectInfo/appsandexperience_windows10teamgeneral.json +++ b/Documentation/ObjectInfo/appsandexperience_windows10teamgeneral.json @@ -14,7 +14,7 @@ "entityKey": "welcomeScreenBlockAutomaticWakeUp", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -46,7 +46,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -63,7 +63,7 @@ ], "entityKey": "welcomeScreenBackgroundImageUrl", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -80,7 +80,7 @@ "entityKey": "connectAppBlockAutoLaunch", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -97,7 +97,7 @@ "entityKey": "settingsBlockSigninSuggestions", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -114,7 +114,7 @@ "entityKey": "settingsBlockMyMeetingsAndFiles", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true } ] diff --git a/Documentation/ObjectInfo/associateddomains_macdevicefeatures.json b/Documentation/ObjectInfo/associateddomains_macdevicefeatures.json index cf9f8d1..4c9f170 100644 --- a/Documentation/ObjectInfo/associateddomains_macdevicefeatures.json +++ b/Documentation/ObjectInfo/associateddomains_macdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -41,7 +41,7 @@ ], "entityKey": "applicationIdentifier", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -62,7 +62,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -79,7 +79,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -98,7 +98,7 @@ "entityKey": "directDownloadsEnabled", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -115,7 +115,7 @@ ], "entityKey": "appAssociatedDomains", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -123,7 +123,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ] diff --git a/Documentation/ObjectInfo/autonomoussingleappmode_iosgeneral.json b/Documentation/ObjectInfo/autonomoussingleappmode_iosgeneral.json index c74574f..3f1c734 100644 --- a/Documentation/ObjectInfo/autonomoussingleappmode_iosgeneral.json +++ b/Documentation/ObjectInfo/autonomoussingleappmode_iosgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -40,7 +40,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -58,7 +58,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -75,7 +75,7 @@ ], "entityKey": "appsSingleAppModeList", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -83,7 +83,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/azureoperationalinsights_windows10teamgeneral.json b/Documentation/ObjectInfo/azureoperationalinsights_windows10teamgeneral.json index a9932b5..354e394 100644 --- a/Documentation/ObjectInfo/azureoperationalinsights_windows10teamgeneral.json +++ b/Documentation/ObjectInfo/azureoperationalinsights_windows10teamgeneral.json @@ -18,7 +18,7 @@ ], "entityKey": "azureOperationalInsightsWorkspaceId", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -34,7 +34,7 @@ ], "entityKey": "azureOperationalInsightsWorkspaceKey", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true } ], @@ -44,7 +44,7 @@ "entityKey": "syntheticAzureOperationalInsightsEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true } } diff --git a/Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json b/Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json index 9cab2d4..058ca5a 100644 --- a/Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -32,7 +32,7 @@ "booleanActions": 1, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -50,7 +50,7 @@ "booleanActions": 1, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -67,7 +67,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -100,7 +100,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -111,7 +111,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -144,7 +144,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -165,7 +165,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -191,7 +191,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -202,7 +202,7 @@ "booleanActions": 0, "defaultValue": "xtsAes128", "unconfiguredValue": "xtsAes128", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -229,7 +229,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -250,7 +250,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -276,7 +276,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -287,7 +287,7 @@ "booleanActions": 0, "defaultValue": "xtsAes128", "unconfiguredValue": "xtsAes128", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -319,7 +319,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -340,7 +340,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -361,7 +361,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -372,7 +372,7 @@ "booleanActions": 0, "defaultValue": "aesCbc128", "unconfiguredValue": "aesCbc128", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -383,7 +383,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -400,7 +400,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -424,7 +424,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -456,7 +456,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -488,7 +488,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -520,7 +520,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -552,7 +552,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -574,7 +574,7 @@ ], "entityKey": "minimumPinLength", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -585,7 +585,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -609,7 +609,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -641,7 +641,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -673,7 +673,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -691,7 +691,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -709,7 +709,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -736,7 +736,7 @@ "booleanActions": 0, "defaultValue": "passwordAndKey", "unconfiguredValue": "passwordAndKey", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -773,7 +773,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -791,7 +791,7 @@ "booleanActions": 1, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -802,7 +802,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -847,7 +847,7 @@ ], "entityKey": "prebootRecoveryMessage", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -870,7 +870,7 @@ ], "entityKey": "prebootRecoveryUrl", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -881,7 +881,7 @@ "booleanActions": 0, "defaultValue": "default", "unconfiguredValue": "default", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -892,7 +892,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -903,7 +903,7 @@ "booleanActions": 1, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -920,7 +920,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -938,7 +938,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -962,7 +962,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -994,7 +994,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1026,7 +1026,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1044,7 +1044,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1062,7 +1062,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1089,7 +1089,7 @@ "booleanActions": 0, "defaultValue": "passwordAndKey", "unconfiguredValue": "passwordAndKey", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1107,7 +1107,7 @@ "booleanActions": 1, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1118,7 +1118,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1135,7 +1135,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1159,7 +1159,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1170,7 +1170,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/browser_windows8general.json b/Documentation/ObjectInfo/browser_windows8general.json index d4eaa8d..12a3b12 100644 --- a/Documentation/ObjectInfo/browser_windows8general.json +++ b/Documentation/ObjectInfo/browser_windows8general.json @@ -14,7 +14,7 @@ "entityKey": "browserBlockAutofill", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "browserRequireFraudWarning", "booleanActions": 1, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "browserRequireSmartScreen", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "browserBlockJavaScript", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "browserBlockPopups", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "browserBlockSendingDoNotTrackHeader", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -116,7 +116,7 @@ "entityKey": "browserBlockPlugins", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -133,7 +133,7 @@ "entityKey": "browserBlockSingleWordEntryOnIntranetSites", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -150,7 +150,7 @@ "entityKey": "browserBlockAutomaticDetectionOfIntranetSites", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -187,7 +187,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -234,7 +234,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -281,7 +281,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -298,7 +298,7 @@ "entityKey": "browserRequireHighSecurityForRestrictedSites", "booleanActions": 4, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -321,7 +321,7 @@ ], "entityKey": "browserLoggingReportLocation", "booleanActions": 0, - "policyType": 91, + "policyType": 92, "enabled": true } ], @@ -331,7 +331,7 @@ "entityKey": "browserBlockEnterpriseModeAccess", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -348,7 +348,7 @@ ], "entityKey": "browserEnterpriseModeSiteListLocation", "booleanActions": 0, - "policyType": 91, + "policyType": 92, "enabled": true } ] diff --git a/Documentation/ObjectInfo/browser_windowsphonegeneral.json b/Documentation/ObjectInfo/browser_windowsphonegeneral.json index c7b01e8..4065cfe 100644 --- a/Documentation/ObjectInfo/browser_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/browser_windowsphonegeneral.json @@ -13,7 +13,7 @@ "entityKey": "webBrowserBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true } } diff --git a/Documentation/ObjectInfo/builtinapps_iosgeneral.json b/Documentation/ObjectInfo/builtinapps_iosgeneral.json index 2d0c4bf..78fe6ae 100644 --- a/Documentation/ObjectInfo/builtinapps_iosgeneral.json +++ b/Documentation/ObjectInfo/builtinapps_iosgeneral.json @@ -26,7 +26,7 @@ "entityKey": "siriBlockedWhenLocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -36,7 +36,7 @@ "entityKey": "siriBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -52,7 +52,7 @@ "entityKey": "safariRequireFraudWarning", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -60,7 +60,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -85,7 +85,7 @@ "entityKey": "spotlightBlockInternetResults", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -103,22 +103,17 @@ "enabled": true }, { - "nameResourceKey": "allowOption", + "nameResourceKey": "webBrowserCookiesAllowAll", "value": "allowAlways", "enabled": true }, { - "nameResourceKey": "blockAllCookiesOption", + "nameResourceKey": "webBrowserCookiesPreventAndBlock", "value": "blockAlways", "enabled": true }, { - "nameResourceKey": "allowVisitedSitesCookiesOption", - "value": "allowFromWebsitesVisited", - "enabled": true - }, - { - "nameResourceKey": "allowCurrentWebSiteCookiesOption", + "nameResourceKey": "webBrowserCookiesPreventCrossSite", "value": "allowCurrentWebSite", "enabled": true } @@ -127,7 +122,7 @@ "booleanActions": 0, "defaultValue": "browserDefault", "unconfiguredValue": "browserDefault", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -143,7 +138,7 @@ "entityKey": "safariBlockJavaScript", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -159,7 +154,24 @@ "entityKey": "safariBlockPopups", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, + "enabled": true + }, + { + "dataType": 0, + "category": 16, + "nameResourceKey": "onDeviceOnlyDictationForcedName", + "descriptionResourceKey": "onDeviceOnlyDictationForcedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "onDeviceOnlyDictationForced", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, "enabled": true } ], @@ -167,7 +179,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -196,7 +208,7 @@ "entityKey": "faceTimeBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -206,7 +218,7 @@ "entityKey": "cameraBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -223,7 +235,7 @@ "entityKey": "siriRequireProfanityFilter", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -240,7 +252,7 @@ "entityKey": "siriBlockUserGeneratedContent", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -256,7 +268,7 @@ "entityKey": "appleNewsBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -272,7 +284,7 @@ "entityKey": "iBooksStoreBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -288,7 +300,7 @@ "entityKey": "messagesBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -304,7 +316,7 @@ "entityKey": "podcastsBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -321,7 +333,7 @@ "entityKey": "iTunesBlockMusicService", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -337,7 +349,7 @@ "entityKey": "iTunesBlockRadio", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -353,7 +365,7 @@ "entityKey": "iTunesBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -370,7 +382,7 @@ "entityKey": "findMyDeviceInFindMyAppBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -387,7 +399,7 @@ "entityKey": "findMyFriendsInFindMyAppBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -404,7 +416,7 @@ "entityKey": "findMyFriendsBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -421,7 +433,7 @@ "entityKey": "blockSystemAppRemoval", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -438,7 +450,7 @@ "entityKey": "safariBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -454,7 +466,7 @@ "entityKey": "safariBlockAutofill", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -462,7 +474,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/builtinapps_macgeneral.json b/Documentation/ObjectInfo/builtinapps_macgeneral.json index 19907c7..fcc661f 100644 --- a/Documentation/ObjectInfo/builtinapps_macgeneral.json +++ b/Documentation/ObjectInfo/builtinapps_macgeneral.json @@ -21,7 +21,7 @@ "entityKey": "safariBlockAutofill", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -38,7 +38,7 @@ "entityKey": "cameraBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -54,7 +54,7 @@ "entityKey": "iTunesBlockMusicService", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -71,7 +71,7 @@ "entityKey": "spotlightBlockInternetResults", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -88,7 +88,7 @@ "entityKey": "iTunesBlockFileSharing", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -96,7 +96,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } diff --git a/Documentation/ObjectInfo/cellular_windows8general.json b/Documentation/ObjectInfo/cellular_windows8general.json index 9544fec..8acc07c 100644 --- a/Documentation/ObjectInfo/cellular_windows8general.json +++ b/Documentation/ObjectInfo/cellular_windows8general.json @@ -13,7 +13,7 @@ "entityKey": "cellularBlockDataRoaming", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true } } diff --git a/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json b/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json index abb0698..70c7f7a 100644 --- a/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json +++ b/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json @@ -22,7 +22,7 @@ "entityKey": "iCloudRequireEncryptedBackup", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -39,7 +39,7 @@ "entityKey": "iCloudBlockManagedAppsSync", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -55,7 +55,7 @@ "entityKey": "enterpriseBookBlockBackup", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -71,7 +71,7 @@ "entityKey": "enterpriseBookBlockMetadataSync", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -79,7 +79,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -104,7 +104,7 @@ "entityKey": "iCloudBlockPhotoStreamSync", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -121,7 +121,7 @@ "entityKey": "iCloudBlockPhotoLibrary", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -138,7 +138,7 @@ "entityKey": "iCloudBlockSharedPhotoStream", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -155,7 +155,7 @@ "entityKey": "iCloudBlockActivityContinuation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -163,7 +163,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -188,7 +188,7 @@ "entityKey": "iCloudBlockBackup", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -205,7 +205,7 @@ "entityKey": "iCloudBlockDocumentSync", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -222,7 +222,7 @@ "entityKey": "keychainBlockCloudSync", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -230,7 +230,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/cloudandstorage_macgeneral.json b/Documentation/ObjectInfo/cloudandstorage_macgeneral.json index 0464115..828b3c7 100644 --- a/Documentation/ObjectInfo/cloudandstorage_macgeneral.json +++ b/Documentation/ObjectInfo/cloudandstorage_macgeneral.json @@ -21,7 +21,7 @@ "entityKey": "keychainBlockCloudSync", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -38,7 +38,7 @@ "entityKey": "iCloudBlockDocumentSync", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -55,7 +55,7 @@ "entityKey": "iCloudBlockMail", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -72,7 +72,7 @@ "entityKey": "iCloudBlockAddressBook", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -89,7 +89,7 @@ "entityKey": "iCloudBlockCalendar", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -106,7 +106,7 @@ "entityKey": "iCloudBlockReminders", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -123,7 +123,7 @@ "entityKey": "iCloudBlockBookmarks", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -140,7 +140,7 @@ "entityKey": "iCloudBlockNotes", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -157,7 +157,7 @@ "entityKey": "iCloudBlockPhotoLibrary", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -174,7 +174,7 @@ "entityKey": "iCloudBlockActivityContinuation", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -182,7 +182,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } diff --git a/Documentation/ObjectInfo/cloudandstorage_windows10general.json b/Documentation/ObjectInfo/cloudandstorage_windows10general.json index 553e541..4e7c89d 100644 --- a/Documentation/ObjectInfo/cloudandstorage_windows10general.json +++ b/Documentation/ObjectInfo/cloudandstorage_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "microsoftAccountBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "accountsBlockAddingNonMicrosoftAccountEmail", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "microsoftAccountBlockSettingsSync", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -75,7 +75,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/cloudandstorage_windows8general.json b/Documentation/ObjectInfo/cloudandstorage_windows8general.json index 1adb29f..a913297 100644 --- a/Documentation/ObjectInfo/cloudandstorage_windows8general.json +++ b/Documentation/ObjectInfo/cloudandstorage_windows8general.json @@ -13,7 +13,7 @@ ], "entityKey": "workFoldersUrl", "booleanActions": 0, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -30,7 +30,7 @@ "entityKey": "accountsBlockAddingNonMicrosoftAccountEmail", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true } ] diff --git a/Documentation/ObjectInfo/cloudprint_windows10general.json b/Documentation/ObjectInfo/cloudprint_windows10general.json index 33e9411..cf411d5 100644 --- a/Documentation/ObjectInfo/cloudprint_windows10general.json +++ b/Documentation/ObjectInfo/cloudprint_windows10general.json @@ -16,7 +16,7 @@ "booleanActions": 0, "defaultValue": "", "unconfiguredValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -35,7 +35,7 @@ "booleanActions": 0, "defaultValue": "", "unconfiguredValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -54,7 +54,7 @@ "booleanActions": 0, "defaultValue": "", "unconfiguredValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -73,7 +73,7 @@ "booleanActions": 0, "defaultValue": "", "unconfiguredValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -90,7 +90,7 @@ ], "entityKey": "enterpriseCloudPrintDiscoveryMaxLimit", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -109,7 +109,7 @@ "booleanActions": 0, "defaultValue": "", "unconfiguredValue": "", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/connecteddevices_iosgeneral.json b/Documentation/ObjectInfo/connecteddevices_iosgeneral.json index ebd64d5..a4a0fd1 100644 --- a/Documentation/ObjectInfo/connecteddevices_iosgeneral.json +++ b/Documentation/ObjectInfo/connecteddevices_iosgeneral.json @@ -22,7 +22,7 @@ "entityKey": "appleWatchForceWristDetection", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -30,7 +30,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -55,7 +55,24 @@ "entityKey": "airPlayForcePairingPasswordForOutgoingRequests", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, + "enabled": true + }, + { + "dataType": 0, + "category": 20, + "nameResourceKey": "autoUnlockBlockedName", + "descriptionResourceKey": "autoUnlockBlockedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "autoUnlockBlocked", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, "enabled": true } ], @@ -63,7 +80,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -87,7 +104,7 @@ "entityKey": "airDropBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -103,7 +120,7 @@ "entityKey": "appleWatchBlockPairing", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -120,7 +137,7 @@ "entityKey": "bluetoothBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -137,7 +154,7 @@ "entityKey": "hostPairingBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -159,7 +176,7 @@ "entityKey": "airPrintBlockCredentialsStorage", "booleanActions": 3, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -176,7 +193,7 @@ "entityKey": "airPrintForceTrustedTLS", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -193,7 +210,7 @@ "entityKey": "airPrintBlockiBeaconDiscovery", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -203,7 +220,7 @@ "entityKey": "airPrintBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -220,7 +237,7 @@ "entityKey": "proximityBlockSetupToNewDevice", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -237,7 +254,7 @@ "entityKey": "filesUsbDriveAccessBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -254,7 +271,24 @@ "entityKey": "nfcBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, + "enabled": true + }, + { + "dataType": 0, + "category": 20, + "nameResourceKey": "unpairedExternalBootToRecoveryAllowedName", + "descriptionResourceKey": "unpairedExternalBootToRecoveryAllowedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unpairedExternalBootToRecoveryAllowed", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, "enabled": true } ], @@ -262,7 +296,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/connecteddevices_macgeneral.json b/Documentation/ObjectInfo/connecteddevices_macgeneral.json index 3ccd620..bb631ac 100644 --- a/Documentation/ObjectInfo/connecteddevices_macgeneral.json +++ b/Documentation/ObjectInfo/connecteddevices_macgeneral.json @@ -20,7 +20,7 @@ "entityKey": "airDropBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -37,7 +37,7 @@ "entityKey": "appleWatchBlockAutoUnlock", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -45,7 +45,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } diff --git a/Documentation/ObjectInfo/connectivity_windows10general.json b/Documentation/ObjectInfo/connectivity_windows10general.json index 8a5c15d..53d3ff1 100644 --- a/Documentation/ObjectInfo/connectivity_windows10general.json +++ b/Documentation/ObjectInfo/connectivity_windows10general.json @@ -29,7 +29,7 @@ "booleanActions": 0, "defaultValue": "allowed", "unconfiguredValue": "allowed", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -46,7 +46,7 @@ "entityKey": "cellularBlockDataWhenRoaming", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -63,7 +63,7 @@ "entityKey": "cellularBlockVpn", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -80,7 +80,7 @@ "entityKey": "cellularBlockVpnWhenRoaming", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -97,7 +97,7 @@ "entityKey": "connectedDevicesServiceBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -114,7 +114,7 @@ "entityKey": "nfcBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -131,7 +131,7 @@ "entityKey": "wiFiBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -148,7 +148,7 @@ "entityKey": "wiFiBlockAutomaticConnectHotspots", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -165,7 +165,7 @@ "entityKey": "wiFiBlockManualConfiguration", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -182,7 +182,7 @@ ], "entityKey": "wiFiScanInterval", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -198,7 +198,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -215,7 +215,7 @@ "entityKey": "bluetoothBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -232,7 +232,7 @@ "entityKey": "bluetoothBlockDiscoverableMode", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -249,7 +249,7 @@ "entityKey": "bluetoothBlockPrePairing", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -266,7 +266,7 @@ "entityKey": "bluetoothBlockAdvertising", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -284,7 +284,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -303,7 +303,7 @@ ], "entityKey": "guidExample", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -320,7 +320,7 @@ ], "entityKey": "bluetoothAllowedServices", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/connectivity_windowsphonegeneral.json b/Documentation/ObjectInfo/connectivity_windowsphonegeneral.json index f517eb8..a117de5 100644 --- a/Documentation/ObjectInfo/connectivity_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/connectivity_windowsphonegeneral.json @@ -14,7 +14,7 @@ "entityKey": "wifiBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "cellularBlockWifiTethering", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "wifiBlockAutomaticConnectHotspots", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "wifiBlockHotspotReporting", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "nfcBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "bluetoothBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true } ] diff --git a/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json b/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json index 176cf0f..73dd24e 100644 --- a/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json +++ b/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json @@ -41,7 +41,7 @@ "entityKey": "contentCachingType", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -59,7 +59,7 @@ "entityKey": "contentCachingMaxSizeBytes", "booleanActions": 0, "defaultValue": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -76,7 +76,7 @@ ], "entityKey": "contentCachingDataPath", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -93,7 +93,7 @@ "entityKey": "contentCachingPort", "booleanActions": 0, "defaultValue": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -115,7 +115,7 @@ ], "entityKey": "contentCachingForceConnectionSharing", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -124,7 +124,7 @@ ], "entityKey": "contentCachingDisableConnectionSharing", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -140,7 +140,7 @@ ], "entityKey": "contentCachingLogClientIdentities", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -156,7 +156,7 @@ ], "entityKey": "contentCachingBlockDeletion", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -172,7 +172,7 @@ ], "entityKey": "contentCachingShowAlerts", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -188,7 +188,7 @@ ], "entityKey": "contentCachingKeepAwake", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -247,7 +247,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -265,7 +265,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -283,7 +283,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -300,7 +300,7 @@ ], "entityKey": "contentCachingClientListenRanges", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -338,7 +338,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -356,7 +356,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -374,7 +374,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -391,7 +391,7 @@ ], "entityKey": "contentCachingClientListenRanges", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -401,7 +401,7 @@ "entityKey": "contentCachingClientPolicy", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -432,7 +432,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -450,7 +450,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -468,7 +468,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -485,7 +485,7 @@ ], "entityKey": "contentCachingPublicRanges", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -544,7 +544,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -562,7 +562,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -580,7 +580,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -597,7 +597,7 @@ ], "entityKey": "contentCachingPeerListenRanges", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -628,7 +628,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -646,7 +646,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -664,7 +664,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -681,7 +681,7 @@ ], "entityKey": "contentCachingPeerFilterRanges", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -691,7 +691,7 @@ "entityKey": "contentCachingPeerPolicy", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -709,7 +709,7 @@ ], "entityKey": "contentCachingParents", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -726,7 +726,7 @@ ], "entityKey": "contentCachingParents", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -772,7 +772,7 @@ "entityKey": "contentCachingParentSelectionPolicy", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -781,7 +781,7 @@ ], "entityKey": "contentCachingEnabled", "booleanActions": 9, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -789,7 +789,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } diff --git a/Documentation/ObjectInfo/controlpanelandsettings_windows10general.json b/Documentation/ObjectInfo/controlpanelandsettings_windows10general.json index 3b3ea1f..072fa1b 100644 --- a/Documentation/ObjectInfo/controlpanelandsettings_windows10general.json +++ b/Documentation/ObjectInfo/controlpanelandsettings_windows10general.json @@ -25,7 +25,7 @@ "entityKey": "settingsBlockChangePowerSleep", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -35,7 +35,7 @@ "entityKey": "settingsBlockSystemPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -52,7 +52,7 @@ "entityKey": "settingsBlockDevicesPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -69,7 +69,7 @@ "entityKey": "settingsBlockNetworkInternetPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -86,7 +86,7 @@ "entityKey": "settingsBlockPersonalizationPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -103,7 +103,7 @@ "entityKey": "settingsBlockAppsPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -120,7 +120,7 @@ "entityKey": "settingsBlockAccountsPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -143,7 +143,7 @@ "entityKey": "settingsBlockChangeSystemTime", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -160,7 +160,7 @@ "entityKey": "settingsBlockChangeRegion", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -177,7 +177,7 @@ "entityKey": "settingsBlockChangeLanguage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -187,7 +187,7 @@ "entityKey": "settingsBlockTimeLanguagePage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -204,7 +204,7 @@ "entityKey": "settingsBlockGamingPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -221,7 +221,7 @@ "entityKey": "settingsBlockEaseOfAccessPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -238,7 +238,7 @@ "entityKey": "settingsBlockPrivacyPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -255,7 +255,7 @@ "entityKey": "settingsBlockUpdateSecurityPage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -265,7 +265,7 @@ "entityKey": "settingsBlockSettingsApp", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } } diff --git a/Documentation/ObjectInfo/credentialguard_windows10endpointprotection.json b/Documentation/ObjectInfo/credentialguard_windows10endpointprotection.json index 5bcbd9a..0426dad 100644 --- a/Documentation/ObjectInfo/credentialguard_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/credentialguard_windows10endpointprotection.json @@ -33,7 +33,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } } diff --git a/Documentation/ObjectInfo/customcompliance_compliancewindows10.json b/Documentation/ObjectInfo/customcompliance_compliancewindows10.json index 207ba74..acf237d 100644 --- a/Documentation/ObjectInfo/customcompliance_compliancewindows10.json +++ b/Documentation/ObjectInfo/customcompliance_compliancewindows10.json @@ -1,7 +1,7 @@ { "customcompliance_compliancewindows10": { "dataType": 25, - "category": 142, + "category": 143, "childSettings": [ ], diff --git a/Documentation/ObjectInfo/customconfiguration_ioscustom.json b/Documentation/ObjectInfo/customconfiguration_ioscustom.json index 929f604..277f9ad 100644 --- a/Documentation/ObjectInfo/customconfiguration_ioscustom.json +++ b/Documentation/ObjectInfo/customconfiguration_ioscustom.json @@ -14,7 +14,7 @@ "entityKey": "payloadName", "booleanActions": 0, "defaultValue": "", - "policyType": 40, + "policyType": 41, "enabled": true }, { @@ -32,7 +32,7 @@ ], "entityKey": "payload", "booleanActions": 0, - "policyType": 40, + "policyType": 41, "enabled": true } ] diff --git a/Documentation/ObjectInfo/customconfiguration_maccustom.json b/Documentation/ObjectInfo/customconfiguration_maccustom.json index 5d8bf1e..af963cd 100644 --- a/Documentation/ObjectInfo/customconfiguration_maccustom.json +++ b/Documentation/ObjectInfo/customconfiguration_maccustom.json @@ -14,7 +14,7 @@ "entityKey": "payloadName", "booleanActions": 0, "defaultValue": "", - "policyType": 55, + "policyType": 56, "enabled": true }, { @@ -32,7 +32,7 @@ ], "entityKey": "payload", "booleanActions": 0, - "policyType": 55, + "policyType": 56, "enabled": true } ] diff --git a/Documentation/ObjectInfo/customomasettings_windows10custom.json b/Documentation/ObjectInfo/customomasettings_windows10custom.json index 4a6e891..5fb8d2f 100644 --- a/Documentation/ObjectInfo/customomasettings_windows10custom.json +++ b/Documentation/ObjectInfo/customomasettings_windows10custom.json @@ -15,7 +15,7 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } }, @@ -33,7 +33,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } }, @@ -51,7 +51,7 @@ ], "entityKey": "omaUri", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } }, @@ -86,7 +86,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -111,7 +111,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -134,7 +134,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -157,7 +157,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -180,7 +180,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -213,7 +213,7 @@ "entityKey": "value", "booleanActions": 0, "defaultValue": false, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -238,7 +238,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } ], @@ -247,7 +247,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 73, + "policyType": 74, "enabled": true } } @@ -265,7 +265,7 @@ "entityKey": "omaSettings", "booleanActions": 0, "defaultValue": "", - "policyType": 73, + "policyType": 74, "enabled": true } } diff --git a/Documentation/ObjectInfo/customomasettings_windowsphonecustom.json b/Documentation/ObjectInfo/customomasettings_windowsphonecustom.json index b0dee61..f8a666c 100644 --- a/Documentation/ObjectInfo/customomasettings_windowsphonecustom.json +++ b/Documentation/ObjectInfo/customomasettings_windowsphonecustom.json @@ -15,7 +15,7 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } }, @@ -33,7 +33,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } }, @@ -51,7 +51,7 @@ ], "entityKey": "omaUri", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } }, @@ -86,7 +86,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -111,7 +111,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -134,7 +134,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -157,7 +157,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -180,7 +180,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -213,7 +213,7 @@ "entityKey": "value", "booleanActions": 0, "defaultValue": false, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -238,7 +238,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } ], @@ -247,7 +247,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 98, + "policyType": 99, "enabled": true } } @@ -265,7 +265,7 @@ "entityKey": "omaSettings", "booleanActions": 0, "defaultValue": "", - "policyType": 98, + "policyType": 99, "enabled": true } } diff --git a/Documentation/ObjectInfo/custompreferences_maccustompreferences.json b/Documentation/ObjectInfo/custompreferences_maccustompreferences.json index 0e00221..6aadc48 100644 --- a/Documentation/ObjectInfo/custompreferences_maccustompreferences.json +++ b/Documentation/ObjectInfo/custompreferences_maccustompreferences.json @@ -14,7 +14,7 @@ ], "entityKey": "bundleId", "booleanActions": 0, - "policyType": 56, + "policyType": 57, "enabled": true }, { @@ -31,7 +31,7 @@ ], "entityKey": "configurationXml", "booleanActions": 0, - "policyType": 56, + "policyType": 57, "enabled": true } ] diff --git a/Documentation/ObjectInfo/defender_windows10general.json b/Documentation/ObjectInfo/defender_windows10general.json index b8a8de0..76ff242 100644 --- a/Documentation/ObjectInfo/defender_windows10general.json +++ b/Documentation/ObjectInfo/defender_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "defenderRequireRealTimeMonitoring", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "defenderRequireBehaviorMonitoring", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "defenderRequireNetworkInspectionSystem", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "defenderScanDownloads", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -92,7 +92,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -119,7 +119,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -146,7 +146,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -163,7 +163,7 @@ "entityKey": "defenderScanScriptsLoadedInInternetExplorer", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -180,7 +180,7 @@ "entityKey": "defenderBlockEndUserAccess", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -324,7 +324,7 @@ ], "entityKey": "defenderSignatureUpdateIntervalInHours", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -361,7 +361,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -379,7 +379,7 @@ "entityKey": "defenderDaysBeforeDeletingQuarantinedMalware", "booleanActions": 0, "defaultValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -396,7 +396,7 @@ ], "entityKey": "defenderScanMaxCpu", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -413,7 +413,7 @@ "entityKey": "defenderScanArchiveFiles", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -430,7 +430,7 @@ "entityKey": "defenderScanIncomingMail", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -447,7 +447,7 @@ "entityKey": "defenderScanRemovableDrivesDuringFullScan", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -464,7 +464,7 @@ "entityKey": "defenderScanMappedNetworkDrivesDuringFullScan", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -481,7 +481,7 @@ "entityKey": "defenderScanNetworkFiles", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -498,7 +498,7 @@ "entityKey": "defenderRequireCloudProtection", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -535,7 +535,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -553,7 +553,7 @@ "entityKey": "defenderCloudExtendedTimeout", "booleanActions": 0, "defaultValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -595,7 +595,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -734,7 +734,7 @@ ], "entityKey": "defenderScheduledQuickScanTime", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -816,7 +816,7 @@ ], "entityKey": "defenderSystemScanSchedule", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -955,7 +955,7 @@ ], "entityKey": "defenderScheduledScanTime", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1026,7 +1026,7 @@ ], "entityKey": "defenderSystemScanSchedule", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1165,7 +1165,7 @@ ], "entityKey": "defenderScheduledScanTime", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1176,7 +1176,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1210,7 +1210,7 @@ ], "entityKey": "defenderPotentiallyUnwantedAppAction", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1237,7 +1237,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1299,7 +1299,7 @@ "booleanActions": 0, "defaultValue": "everyday", "unconfiguredValue": "everyday", - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -1357,7 +1357,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1409,7 +1409,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1461,7 +1461,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1513,7 +1513,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1523,7 +1523,7 @@ "entityKey": "syntheticDefenderDetectedMalwareActionsEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1548,7 +1548,7 @@ ], "entityKey": "nameColumn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -1565,7 +1565,7 @@ ], "entityKey": "defenderFilesAndFoldersToExclude", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1584,7 +1584,7 @@ ], "entityKey": "extensionsColumn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -1601,7 +1601,7 @@ ], "entityKey": "defenderFileExtensionsToExclude", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1620,7 +1620,7 @@ ], "entityKey": "processesColumn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -1637,7 +1637,7 @@ ], "entityKey": "defenderProcessesToExclude", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1651,7 +1651,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1659,7 +1659,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/defenderantivirus_windows10endpointprotection.json b/Documentation/ObjectInfo/defenderantivirus_windows10endpointprotection.json index aa3be12..74476c6 100644 --- a/Documentation/ObjectInfo/defenderantivirus_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defenderantivirus_windows10endpointprotection.json @@ -2,7 +2,7 @@ "defenderantivirus_windows10endpointprotection": [ { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "enableRealTimeMonitoringName", "descriptionResourceKey": "empty", "childSettings": [ @@ -23,12 +23,12 @@ "entityKey": "defenderAllowRealTimeMonitoring", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "enableBehaviorMonitoringName", "descriptionResourceKey": "EnableBehaviorMonitoringDescription", "childSettings": [ @@ -49,12 +49,12 @@ "entityKey": "defenderAllowBehaviorMonitoring", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "enableNetworkInspectionSystemName", "descriptionResourceKey": "enableNetworkInspectionSystemDescription", "childSettings": [ @@ -75,12 +75,12 @@ "entityKey": "defenderAllowIntrusionPreventionSystem", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "scanAllDownloadsName", "descriptionResourceKey": "empty", "childSettings": [ @@ -101,12 +101,12 @@ "entityKey": "defenderAllowScanDownloads", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "defenderScheduleScanEnableLowCpuPriorityName", "descriptionResourceKey": "defenderScheduleScanEnableLowCpuPriorityDescription", "childSettings": [ @@ -128,12 +128,12 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "defenderDisableCatchupQuickScanName", "descriptionResourceKey": "defenderDisableCatchupQuickScanDescription", "childSettings": [ @@ -155,12 +155,12 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "defenderDisableCatchupFullScanName", "descriptionResourceKey": "defenderDisableCatchupFullScanDescription", "childSettings": [ @@ -182,12 +182,12 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "scriptScanningName", "descriptionResourceKey": "empty", "childSettings": [ @@ -208,12 +208,12 @@ "entityKey": "defenderAllowScanScriptsLoadedInInternetExplorer", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "enableEndUserAccessToDefenderName", "descriptionResourceKey": "empty", "childSettings": [ @@ -234,12 +234,12 @@ "entityKey": "defenderAllowEndUserAccess", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 0, - "category": 141, + "category": 142, "nameResourceKey": "checkForSignaturesBeforeRunningScanName", "descriptionResourceKey": "empty", "childSettings": [ @@ -251,12 +251,12 @@ "entityKey": "defenderCheckForSignaturesBeforeRunningScan", "booleanActions": 2, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "monitorFileAndProgramActivityName", "descriptionResourceKey": "empty", "childSettings": [ @@ -283,12 +283,12 @@ "booleanActions": 0, "defaultValue": "monitorAllFiles", "unconfiguredValue": "monitorAllFiles", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 14, - "category": 141, + "category": 142, "nameResourceKey": "daysToTrackResolvedMalwareName", "descriptionResourceKey": "DaysToTrackResolvedMalwareDescription", "emptyValueResourceKey": "daysToTrackResolvedMalwarePlaceholder", @@ -301,12 +301,12 @@ "entityKey": "defenderDaysBeforeDeletingQuarantinedMalware", "booleanActions": 0, "defaultValue": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 14, - "category": 141, + "category": 142, "nameResourceKey": "limitCPUUsageDuringScanName", "descriptionResourceKey": "limitCPUUsageDuringScanDescription", "emptyValueResourceKey": "limitCPUUsageDuringScanPlaceholder", @@ -318,12 +318,12 @@ ], "entityKey": "defenderScanMaxCpuPercentage", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "scanArchiveFilesName", "descriptionResourceKey": "empty", "childSettings": [ @@ -344,12 +344,12 @@ "entityKey": "defenderAllowScanArchiveFiles", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 0, - "category": 141, + "category": 142, "nameResourceKey": "scanIncomingMailMessagesName", "descriptionResourceKey": "empty", "childSettings": [ @@ -361,12 +361,12 @@ "entityKey": "defenderEnableScanIncomingMail", "booleanActions": 2, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "scanRemovableDrivesDuringFullScanName", "descriptionResourceKey": "scanRemovableDrivesDuringFullScanDescription", "childSettings": [ @@ -387,12 +387,12 @@ "entityKey": "defenderAllowScanRemovableDrivesDuringFullScan", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 0, - "category": 141, + "category": 142, "nameResourceKey": "scanMappedNetworkDrivesDuringFullScanName", "descriptionResourceKey": "readOnlyMappingDescription", "childSettings": [ @@ -404,12 +404,12 @@ "entityKey": "defenderEnableScanMappedNetworkDrivesDuringFullScan", "booleanActions": 2, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "scanFilesOpenedFromNetworkFoldersName", "descriptionResourceKey": "readOnlyMappingDescription", "childSettings": [ @@ -430,12 +430,12 @@ "entityKey": "defenderAllowScanNetworkFiles", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "cloudProtectionName", "descriptionResourceKey": "cloudProtectionDescription", "childSettings": [ @@ -456,12 +456,12 @@ "entityKey": "defenderAllowCloudProtection", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "fileBlockingLevelName", "descriptionResourceKey": "fileBlockingLevelDescription", "childSettings": [ @@ -493,12 +493,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 14, - "category": 141, + "category": 142, "nameResourceKey": "timeExtensionForFileScanName", "descriptionResourceKey": "TimeExtensionForFileScanDescription", "emptyValueResourceKey": "timeExtensionForFileScanPlaceholder", @@ -511,12 +511,12 @@ "entityKey": "defenderCloudExtendedTimeoutInSeconds", "booleanActions": 0, "defaultValue": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "typeOfSystemScanName", "descriptionResourceKey": "empty", "childSettings": [ @@ -539,7 +539,7 @@ "children": [ { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "dayScheduled", "descriptionResourceKey": "empty", "childSettings": [ @@ -596,12 +596,12 @@ "booleanActions": 0, "defaultValue": "everyday", "unconfiguredValue": "everyday", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "timeScheduled", "descriptionResourceKey": "empty", "childSettings": [ @@ -735,7 +735,7 @@ ], "entityKey": "defenderScheduledScanTime", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -747,7 +747,7 @@ "children": [ { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "dayScheduled", "descriptionResourceKey": "empty", "childSettings": [ @@ -804,12 +804,12 @@ "booleanActions": 0, "defaultValue": "everyday", "unconfiguredValue": "everyday", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "timeScheduled", "descriptionResourceKey": "empty", "childSettings": [ @@ -943,7 +943,7 @@ ], "entityKey": "defenderScheduledScanTime", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -954,12 +954,12 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "defenderPotentiallyUnwantedAppActionName", "descriptionResourceKey": "defenderPotentiallyUnwantedAppActionDescription", "childSettings": [ @@ -986,12 +986,12 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "defenderSubmitSamplesConsentTypeName", "descriptionResourceKey": "defenderSubmitSamplesConsentTypeDesc", "childSettings": [ @@ -1023,12 +1023,12 @@ "booleanActions": 0, "defaultValue": "sendSafeSamplesAutomatically", "unconfiguredValue": "sendSafeSamplesAutomatically", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 19, - "category": 141, + "category": 142, "nameResourceKey": "defenderBlockOnAccessProtectionName", "descriptionResourceKey": "defenderBlockOnAccessProtectionDesc", "childSettings": [ @@ -1050,18 +1050,18 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 0, - "category": 141, + "category": 142, "nameResourceKey": "defenderDetectedMalwareActionsName", "descriptionResourceKey": "defenderDetectedMalwareActionsDescription", "childSettings": [ { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "LowSeverity", "descriptionResourceKey": "empty", "childSettings": [ @@ -1108,12 +1108,12 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "ModerateSeverity", "descriptionResourceKey": "empty", "childSettings": [ @@ -1160,12 +1160,12 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "HighSeverity", "descriptionResourceKey": "empty", "childSettings": [ @@ -1212,12 +1212,12 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 141, + "category": 142, "nameResourceKey": "SevereSeverity", "descriptionResourceKey": "empty", "childSettings": [ @@ -1264,7 +1264,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1274,12 +1274,12 @@ "entityKey": "syntheticDefenderDetectedMalwareActionsEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 9, - "category": 141, + "category": 142, "childSettings": [ { "complexOptions": [ @@ -1288,7 +1288,7 @@ { "metadata": { "dataType": 20, - "category": 141, + "category": 142, "nameResourceKey": "nameColumn", "emptyValueResourceKey": "nameColumnExamples", "childSettings": [ @@ -1299,13 +1299,13 @@ ], "entityKey": "nameColumn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 141, + "category": 142, "nameResourceKey": "filesAndFoldersToExcludeName", "descriptionResourceKey": "empty", "childSettings": [ @@ -1316,7 +1316,7 @@ ], "entityKey": "defenderFilesAndFoldersToExclude", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1324,7 +1324,7 @@ { "metadata": { "dataType": 20, - "category": 141, + "category": 142, "nameResourceKey": "extensionsColumn", "emptyValueResourceKey": "extensionsColumnExamples", "childSettings": [ @@ -1335,13 +1335,13 @@ ], "entityKey": "extensionsColumn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 141, + "category": 142, "nameResourceKey": "fileExtensionsToExcludeName", "descriptionResourceKey": "empty", "childSettings": [ @@ -1352,7 +1352,7 @@ ], "entityKey": "defenderFileExtensionsToExclude", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1360,7 +1360,7 @@ { "metadata": { "dataType": 20, - "category": 141, + "category": 142, "nameResourceKey": "processesColumn", "emptyValueResourceKey": "processesColumnExamples", "childSettings": [ @@ -1371,13 +1371,13 @@ ], "entityKey": "processesColumn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 141, + "category": 142, "nameResourceKey": "processesToExcludeName", "descriptionResourceKey": "empty", "childSettings": [ @@ -1388,12 +1388,12 @@ ], "entityKey": "defenderProcessesToExclude", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 141, + "category": 142, "nameResourceKey": "DefenderExclusions", "childSettings": [ @@ -1402,7 +1402,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1410,7 +1410,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/defenderexploitguard_windows10endpointprotection.json b/Documentation/ObjectInfo/defenderexploitguard_windows10endpointprotection.json index 4b5366d..ac53e23 100644 --- a/Documentation/ObjectInfo/defenderexploitguard_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defenderexploitguard_windows10endpointprotection.json @@ -15,7 +15,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -31,7 +31,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -47,7 +47,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -79,7 +79,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -111,7 +111,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -127,7 +127,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -159,7 +159,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -191,7 +191,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -223,7 +223,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -255,7 +255,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -287,7 +287,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -303,7 +303,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -335,7 +335,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -367,7 +367,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -399,7 +399,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -431,7 +431,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -463,7 +463,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -479,7 +479,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -511,7 +511,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -527,7 +527,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -559,7 +559,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -575,7 +575,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -595,7 +595,7 @@ ], "entityKey": "defenderAttackSurfaceReductionExcludedPaths", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } @@ -612,7 +612,7 @@ ], "entityKey": "defenderAttackSurfaceReductionExcludedPaths", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -626,7 +626,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -644,7 +644,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -660,7 +660,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -685,7 +685,7 @@ ], "entityKey": "defenderGuardedFoldersAllowedAppPaths", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } @@ -702,7 +702,7 @@ ], "entityKey": "defenderGuardedFoldersAllowedAppPaths", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -721,7 +721,7 @@ ], "entityKey": "defenderAdditionalGuardedFolders", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } @@ -738,7 +738,7 @@ ], "entityKey": "defenderAdditionalGuardedFolders", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -773,7 +773,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -787,7 +787,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -805,7 +805,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -821,7 +821,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -835,6 +835,11 @@ "options": [ { "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "disableOption", "value": "userDefined", "enabled": true }, @@ -844,16 +849,16 @@ "enabled": true }, { - "nameResourceKey": "auditOnly", + "nameResourceKey": "auditOption", "value": "auditMode", "enabled": true } ], "entityKey": "defenderNetworkProtectionType", "booleanActions": 0, - "defaultValue": "userDefined", - "unconfiguredValue": "userDefined", - "policyType": 76, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 77, "enabled": true } ], @@ -867,7 +872,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -884,7 +889,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -900,7 +905,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -916,7 +921,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -932,7 +937,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -948,7 +953,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -964,7 +969,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -982,7 +987,7 @@ ], "entityKey": "defenderExploitProtectionXml", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -999,7 +1004,7 @@ "entityKey": "defenderSecurityCenterBlockExploitProtectionOverride", "booleanActions": 3, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1013,7 +1018,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/defenderfirewall_windows10endpointprotection.json b/Documentation/ObjectInfo/defenderfirewall_windows10endpointprotection.json index 175f36c..a262a98 100644 --- a/Documentation/ObjectInfo/defenderfirewall_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defenderfirewall_windows10endpointprotection.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -58,7 +58,7 @@ ], "entityKey": "firewallBlockStatefulFTP", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -75,7 +75,7 @@ ], "entityKey": "firewallIdleTimeoutForSecurityAssociationInSeconds", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -92,7 +92,7 @@ "entityKey": "firewallSyntheticPresharedKeyEncodingMethod", "booleanActions": 2, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -132,7 +132,7 @@ ], "entityKey": "firewallSyntheticIPsecExemptions", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -169,7 +169,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -198,7 +198,7 @@ ], "entityKey": "firewallMergeKeyingModuleSettings", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -240,7 +240,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -256,7 +256,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -272,7 +272,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -294,7 +294,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -338,7 +338,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -363,7 +363,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -395,7 +395,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -427,7 +427,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -459,7 +459,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -491,7 +491,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -523,7 +523,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -539,7 +539,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -571,7 +571,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -603,7 +603,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -635,7 +635,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -667,7 +667,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -677,7 +677,7 @@ "entityKey": "firewallSyntheticProfileDomainfirewallEnabled", "booleanActions": 2, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -691,7 +691,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -709,7 +709,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -753,7 +753,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -778,7 +778,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -810,7 +810,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -842,7 +842,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -874,7 +874,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -906,7 +906,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -938,7 +938,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -954,7 +954,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -986,7 +986,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1018,7 +1018,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1050,7 +1050,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1082,7 +1082,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1092,7 +1092,7 @@ "entityKey": "firewallSyntheticProfilePrivatefirewallEnabled", "booleanActions": 2, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1106,7 +1106,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1124,7 +1124,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1168,7 +1168,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1193,7 +1193,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1225,7 +1225,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1257,7 +1257,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1289,7 +1289,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1321,7 +1321,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1353,7 +1353,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1369,7 +1369,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1401,7 +1401,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1433,7 +1433,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1465,7 +1465,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1497,7 +1497,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1507,7 +1507,7 @@ "entityKey": "firewallSyntheticProfilePublicfirewallEnabled", "booleanActions": 2, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1521,7 +1521,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1529,7 +1529,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1545,7 +1545,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -1561,7 +1561,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -1581,7 +1581,7 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1600,7 +1600,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1633,7 +1633,7 @@ "entityKey": "trafficDirection", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1666,7 +1666,7 @@ "entityKey": "action", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1699,7 +1699,7 @@ "entityKey": "profileTypes", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1717,7 +1717,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1735,7 +1735,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1772,7 +1772,7 @@ ], "entityKey": "packageFamilyName", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -1796,7 +1796,7 @@ ], "entityKey": "filePath", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -1820,7 +1820,7 @@ ], "entityKey": "serviceName", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -1830,7 +1830,7 @@ "entityKey": "firewallRuleSyntheticApplicationKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1848,7 +1848,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1866,7 +1866,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1902,7 +1902,7 @@ ], "entityKey": "localAddressRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -1912,7 +1912,7 @@ "entityKey": "firewallRuleSyntheticLocalAddressesKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1948,7 +1948,7 @@ ], "entityKey": "remoteAddressRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -1958,7 +1958,7 @@ "entityKey": "firewallRuleSyntheticRemoteAddressesKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1976,7 +1976,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -1994,7 +1994,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -2048,7 +2048,7 @@ ], "entityKey": "localPortRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2058,7 +2058,7 @@ "entityKey": "firewallRuleSyntheticLocalPortsKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -2092,7 +2092,7 @@ ], "entityKey": "remotePortRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2102,7 +2102,7 @@ "entityKey": "firewallRuleSyntheticRemotePortsKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2143,7 +2143,7 @@ ], "entityKey": "localPortRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2153,7 +2153,7 @@ "entityKey": "firewallRuleSyntheticLocalPortsKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -2187,7 +2187,7 @@ ], "entityKey": "remotePortRanges", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2197,7 +2197,7 @@ "entityKey": "firewallRuleSyntheticRemotePortsKey", "booleanActions": 0, "defaultValue": "all", - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2220,7 +2220,7 @@ ], "entityKey": "protocol", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ], @@ -2230,7 +2230,7 @@ "entityKey": "firewallRuleSyntheticProtocolKey", "booleanActions": 0, "defaultValue": "any", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -2248,7 +2248,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -2281,7 +2281,7 @@ "entityKey": "interfaceTypes", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -2299,7 +2299,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } }, @@ -2318,7 +2318,7 @@ ], "entityKey": "localUserAuthorizations", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } } @@ -2334,7 +2334,7 @@ ], "entityKey": "firewallRules", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": false } ] diff --git a/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json b/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json index 406d2a8..90a5644 100644 --- a/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json @@ -26,7 +26,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -53,7 +53,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -69,7 +69,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -96,7 +96,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -114,7 +114,7 @@ "entityKey": "localSecurityOptionsAdministratorAccountName", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -130,7 +130,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -157,7 +157,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -175,7 +175,7 @@ "entityKey": "localSecurityOptionsGuestAccountName", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -189,7 +189,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -218,7 +218,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -245,7 +245,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -272,7 +272,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -309,7 +309,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -323,7 +323,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -343,7 +343,7 @@ "entityKey": "localSecurityOptionsMachineInactivityLimitInMinutes", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -370,7 +370,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -407,7 +407,7 @@ "booleanActions": 0, "defaultValue": "lockWorkstation", "unconfiguredValue": "lockWorkstation", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -423,7 +423,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -460,7 +460,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -487,7 +487,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -514,7 +514,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -532,7 +532,7 @@ "entityKey": "localSecurityOptionsLogOnMessageTitle", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -550,7 +550,7 @@ "entityKey": "localSecurityOptionsLogOnMessageText", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -564,7 +564,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -593,7 +593,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -620,7 +620,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -647,7 +647,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -674,7 +674,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -701,7 +701,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -724,7 +724,7 @@ "entityKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManager", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -744,7 +744,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -781,7 +781,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -818,7 +818,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -865,7 +865,7 @@ "booleanActions": 0, "defaultValue": "lmAndNltm", "unconfiguredValue": "lmAndNltm", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -892,7 +892,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -906,7 +906,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -935,7 +935,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -962,7 +962,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -976,7 +976,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1005,7 +1005,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1032,7 +1032,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1059,7 +1059,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1075,7 +1075,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1127,7 +1127,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1164,7 +1164,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1191,7 +1191,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1218,7 +1218,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1245,7 +1245,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1261,7 +1261,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1288,7 +1288,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1315,7 +1315,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1329,7 +1329,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1358,7 +1358,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1385,7 +1385,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1412,7 +1412,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1426,7 +1426,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1455,7 +1455,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1482,7 +1482,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1496,7 +1496,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/defendersecuritycenter_windows10endpointprotection.json b/Documentation/ObjectInfo/defendersecuritycenter_windows10endpointprotection.json index e01fae8..f500228 100644 --- a/Documentation/ObjectInfo/defendersecuritycenter_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defendersecuritycenter_windows10endpointprotection.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -64,7 +64,7 @@ ], "entityKey": "defenderSecurityCenterDisableRansomwareUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -86,7 +86,7 @@ ], "entityKey": "defenderSecurityCenterDisableVirusUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -115,7 +115,7 @@ ], "entityKey": "defenderSecurityCenterDisableAccountUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -144,7 +144,7 @@ ], "entityKey": "defenderSecurityCenterDisableNetworkUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -173,7 +173,7 @@ ], "entityKey": "defenderSecurityCenterDisableAppBrowserUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -199,7 +199,7 @@ "entityKey": "defenderSecurityCenterDisableHardwareUI", "booleanActions": 0, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -228,7 +228,7 @@ ], "entityKey": "defenderSecurityCenterDisableHealthUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -257,7 +257,7 @@ ], "entityKey": "defenderSecurityCenterDisableFamilyUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -289,7 +289,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -318,7 +318,7 @@ ], "entityKey": "defenderSecurityCenterDisableNotificationAreaUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -347,7 +347,7 @@ ], "entityKey": "defenderSecurityCenterDisableClearTpmUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -376,7 +376,7 @@ ], "entityKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUI", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -408,7 +408,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": false }, { @@ -424,7 +424,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -440,7 +440,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -464,7 +464,7 @@ "entityKey": "defenderSecurityCenterOrganizationDisplayName", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -480,7 +480,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -498,7 +498,7 @@ "entityKey": "defenderSecurityCenterHelpPhone", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -516,7 +516,7 @@ "entityKey": "defenderSecurityCenterHelpEmail", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -534,7 +534,7 @@ "entityKey": "defenderSecurityCenterHelpURL", "booleanActions": 0, "defaultValue": "", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -564,7 +564,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/deliveryoptimization_windowsdeliveryoptimization.json b/Documentation/ObjectInfo/deliveryoptimization_windowsdeliveryoptimization.json index 8523aee..a9b3f5e 100644 --- a/Documentation/ObjectInfo/deliveryoptimization_windowsdeliveryoptimization.json +++ b/Documentation/ObjectInfo/deliveryoptimization_windowsdeliveryoptimization.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -80,7 +80,7 @@ "entityKey": "deliveryOptimizationMode", "booleanActions": 0, "defaultValue": "userDefined", - "policyType": 106, + "policyType": 107, "enabled": false }, { @@ -102,7 +102,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -138,7 +138,7 @@ ], "entityKey": "maximumDownloadBandwidthInKilobytesPerSecond", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -155,7 +155,7 @@ ], "entityKey": "maximumUploadBandwidthInKilobytesPerSecond", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -178,7 +178,7 @@ ], "entityKey": "maximumForegroundBandwidthPercentage", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -194,7 +194,7 @@ ], "entityKey": "maximumBackgroundBandwidthPercentage", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -217,7 +217,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -234,7 +234,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -379,7 +379,7 @@ ], "entityKey": "bandwidthEndBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -395,7 +395,7 @@ ], "entityKey": "bandwidthPercentageDuringBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -411,7 +411,7 @@ ], "entityKey": "bandwidthPercentageOutsideBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -543,7 +543,7 @@ ], "entityKey": "bandwidthBeginBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -557,7 +557,7 @@ ], "entityKey": "bandwidthForegroundPercentageHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -573,7 +573,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -590,7 +590,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -735,7 +735,7 @@ ], "entityKey": "bandwidthEndBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -751,7 +751,7 @@ ], "entityKey": "bandwidthPercentageDuringBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -767,7 +767,7 @@ ], "entityKey": "bandwidthPercentageOutsideBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -899,7 +899,7 @@ ], "entityKey": "bandwidthBeginBusinessHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -913,7 +913,7 @@ ], "entityKey": "bandwidthBackgroundPercentageHours", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -922,7 +922,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -936,7 +936,7 @@ ], "entityKey": "bandwidthMode", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -955,7 +955,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -972,7 +972,7 @@ ], "entityKey": "foregroundDownloadFromHttpDelayInSeconds", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -988,7 +988,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1005,7 +1005,7 @@ ], "entityKey": "minimumRamAllowedToPeerInGigabytes", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1022,7 +1022,7 @@ ], "entityKey": "minimumDiskSizeAllowedToPeerInGigabytes", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1039,7 +1039,7 @@ ], "entityKey": "minimumFileSizeToCacheInMegabytes", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1056,7 +1056,7 @@ ], "entityKey": "minimumBatteryPercentageAllowedToUpload", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1073,7 +1073,7 @@ ], "entityKey": "modifyCacheLocation", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1090,7 +1090,7 @@ ], "entityKey": "maximumCacheAgeInDays", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1126,7 +1126,7 @@ ], "entityKey": "maximumCacheSizeInGigabytes", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1150,7 +1150,7 @@ ], "entityKey": "maximumCacheSizePercentage", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1159,7 +1159,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1173,7 +1173,7 @@ ], "entityKey": "maximumCacheSize", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1205,7 +1205,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1248,7 +1248,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1282,7 +1282,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1317,7 +1317,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1332,7 +1332,7 @@ ], "entityKey": "groupIdSourceOption", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1346,7 +1346,7 @@ ], "entityKey": "groupIdSource", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1370,7 +1370,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1385,7 +1385,7 @@ ], "entityKey": "groupIdSourceOption", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1399,7 +1399,7 @@ ], "entityKey": "groupIdSource", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1423,7 +1423,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1438,7 +1438,7 @@ ], "entityKey": "groupIdSourceOption", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1452,7 +1452,7 @@ ], "entityKey": "groupIdSource", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1476,7 +1476,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1491,7 +1491,7 @@ ], "entityKey": "groupIdSourceOption", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1505,7 +1505,7 @@ ], "entityKey": "groupIdSource", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1529,7 +1529,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1546,7 +1546,7 @@ ], "entityKey": "groupIdCustom", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1560,7 +1560,7 @@ ], "entityKey": "groupIdSource", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1571,7 +1571,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigrued", - "policyType": 106, + "policyType": 107, "enabled": true } ], @@ -1597,7 +1597,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1613,7 +1613,7 @@ ], "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1631,7 +1631,7 @@ ], "entityKey": "cacheServerHostNames", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } } @@ -1648,7 +1648,7 @@ ], "entityKey": "cacheServerHostNames", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1666,7 +1666,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1684,7 +1684,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1699,7 +1699,7 @@ ], "entityKey": "maximumCacheSizePercentageBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1714,7 +1714,7 @@ ], "entityKey": "vpnPeerCachingBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1729,7 +1729,7 @@ ], "entityKey": "maximumCacheAgeInDaysBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1744,7 +1744,7 @@ ], "entityKey": "groupIdSourceOptionsBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1759,7 +1759,7 @@ ], "entityKey": "groupIdCustomBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1774,7 +1774,7 @@ ], "entityKey": "maximumCacheSizeInGigabytesBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1789,7 +1789,7 @@ ], "entityKey": "maximumDownloadBandwidthBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1804,7 +1804,7 @@ ], "entityKey": "maximumUploadBandwidthBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1819,7 +1819,7 @@ ], "entityKey": "maximumBackgroundBandwidthPercentageBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1834,7 +1834,7 @@ ], "entityKey": "maximumForegroundBandwidthPercentageBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1849,7 +1849,7 @@ ], "entityKey": "bandwidthForegroundPercentageHoursBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true }, { @@ -1864,7 +1864,7 @@ ], "entityKey": "bandwidthBackgroundPercentageHoursBacking", "booleanActions": 0, - "policyType": 106, + "policyType": 107, "enabled": true } ] diff --git a/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration.json b/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration.json index 22fa87c..0284a42 100644 --- a/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration.json +++ b/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration.json @@ -72,30 +72,6 @@ "booleanActions": 0, "policyType": 3, "enabled": true - }, - { - "dataType": 19, - "category": 35, - "nameResourceKey": "useDerivedCredentialForAppAuthentication", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "yes", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "no", - "value": false, - "enabled": true - } - ], - "booleanActions": 0, - "defaultValue": true, - "policyType": 3, - "enabled": true } ] } diff --git a/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration.json b/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration.json index c344613..a60034f 100644 --- a/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration.json +++ b/Documentation/ObjectInfo/derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration.json @@ -15,7 +15,7 @@ ], "booleanActions": 0, - "policyType": 42, + "policyType": 43, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 42, + "policyType": 43, "enabled": true } ], @@ -38,7 +38,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 42, + "policyType": 43, "enabled": true }, { @@ -54,7 +54,7 @@ ], "booleanActions": 0, - "policyType": 42, + "policyType": 43, "enabled": true }, { @@ -70,31 +70,7 @@ ], "booleanActions": 0, - "policyType": 42, - "enabled": true - }, - { - "dataType": 19, - "category": 35, - "nameResourceKey": "useDerivedCredentialForAppAuthentication", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "yes", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "no", - "value": false, - "enabled": true - } - ], - "booleanActions": 0, - "defaultValue": true, - "policyType": 42, + "policyType": 43, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json index 2455538..dbe6d2d 100644 --- a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json +++ b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json @@ -4,7 +4,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 135, + "category": 136, "nameResourceKey": "dfciHeaderName", "childSettings": [ @@ -13,14 +13,14 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 135, + "category": 136, "nameResourceKey": "securityFeaturesName", "childSettings": [ @@ -29,12 +29,12 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "changeUefiSettingsPermissionName", "descriptionResourceKey": "changeUefiSettingsPermissionDescription", "childSettings": [ @@ -56,12 +56,12 @@ "booleanActions": 0, "defaultValue": "notConfiguredOnly", "unconfiguredValue": "notConfiguredOnly", - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "virtualizationOfCpuAndIOName", "descriptionResourceKey": "virtualizationOfCpuAndIODescription", "childSettings": [ @@ -88,12 +88,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "windowsPlatformBinaryTableName", "descriptionResourceKey": "windowsPlatformBinaryTableDescription", "childSettings": [ @@ -120,12 +120,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": false }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "simultaneousMultiThreadingName", "descriptionResourceKey": "simultaneousMultiThreadingDescription", "childSettings": [ @@ -152,14 +152,14 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": false }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 135, + "category": 136, "nameResourceKey": "builtInHardwareName", "childSettings": [ @@ -168,14 +168,14 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 135, + "category": 136, "nameResourceKey": "dfciBuiltinHeaderDescName", "childSettings": [ @@ -184,12 +184,12 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "camerasName", "descriptionResourceKey": "camerasDescription", "childSettings": [ @@ -216,12 +216,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "microphonesAndSpeakersName", "descriptionResourceKey": "microphonesAndSpeakersDescription", "childSettings": [ @@ -248,12 +248,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "radiosName", "descriptionResourceKey": "radiosDescription", "childSettings": [ @@ -276,7 +276,7 @@ "children": [ { "dataType": 10, - "category": 135, + "category": 136, "nameResourceKey": "radioWarningInfoBox", "childSettings": [ @@ -285,7 +285,7 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true } ], @@ -296,14 +296,14 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 135, + "category": 136, "nameResourceKey": "bootOptionsName", "childSettings": [ @@ -312,12 +312,12 @@ ], "booleanActions": 0, - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "bootFromExternalMediaName", "descriptionResourceKey": "bootFromExternalMediaDescription", "childSettings": [ @@ -344,12 +344,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true }, { "dataType": 16, - "category": 135, + "category": 136, "nameResourceKey": "bootFromBuiltInNetworkAdaptersName", "descriptionResourceKey": "bootFromBuiltInNetworkAdaptersDescription", "childSettings": [ @@ -376,7 +376,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 107, + "policyType": 108, "enabled": true } ] diff --git a/Documentation/ObjectInfo/deviceguard_windows10endpointprotection.json b/Documentation/ObjectInfo/deviceguard_windows10endpointprotection.json index 9d74128..b1b32c9 100644 --- a/Documentation/ObjectInfo/deviceguard_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/deviceguard_windows10endpointprotection.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -60,7 +60,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -83,7 +83,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -94,7 +94,7 @@ "booleanActions": 0, "defaultValue": "enforceComponentsAndStoreApps", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -130,7 +130,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -153,7 +153,7 @@ ], "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -164,7 +164,7 @@ "booleanActions": 0, "defaultValue": "auditComponentsAndStoreApps", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -174,7 +174,7 @@ "entityKey": "appLockerApplicationControlType", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicehealth_complianceandroidforwork.json b/Documentation/ObjectInfo/devicehealth_complianceandroidforwork.json index 06bbbfe..7b1381e 100644 --- a/Documentation/ObjectInfo/devicehealth_complianceandroidforwork.json +++ b/Documentation/ObjectInfo/devicehealth_complianceandroidforwork.json @@ -117,11 +117,69 @@ { "nameResourceKey": "androidSafetyNetbasicIntegrity", "value": "basicIntegrity", + "children": [ + { + "dataType": 16, + "category": 36, + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName", + "descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeBasic", + "value": "basic", + "enabled": true + }, + { + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeHardwareBacked", + "value": "hardwareBacked", + "enabled": true + } + ], + "entityKey": "securityRequiredAndroidSafetyNetEvaluationType", + "booleanActions": 0, + "defaultValue": "basic", + "unconfiguredValue": "basic", + "policyType": 30, + "enabled": false + } + ], "enabled": true }, { "nameResourceKey": "androidSafetyNetBasicIntegrityAndCertified", "value": "basicIntegrityAndCertified", + "children": [ + { + "dataType": 16, + "category": 36, + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName", + "descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeBasic", + "value": "basic", + "enabled": true + }, + { + "nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeHardwareBacked", + "value": "hardwareBacked", + "enabled": true + } + ], + "entityKey": "securityRequiredAndroidSafetyNetEvaluationType", + "booleanActions": 0, + "defaultValue": "basic", + "unconfiguredValue": "basic", + "policyType": 30, + "enabled": false + } + ], "enabled": true } ], diff --git a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json index a24ddb5..0d36bf7 100644 --- a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json +++ b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json @@ -275,7 +275,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 9, + "enabled": false } ], "dataType": 5, @@ -390,7 +407,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 9, + "enabled": false } ], "dataType": 5, @@ -475,7 +508,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 9, + "enabled": false } ], "dataType": 5, @@ -648,7 +698,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 9, + "enabled": false } ], "dataType": 5, @@ -733,7 +799,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 9, + "enabled": false } ], "dataType": 5, @@ -899,7 +982,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 9, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 41, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 9, + "enabled": false } ], "dataType": 5, diff --git a/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json b/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json index c2fc917..23e6d7e 100644 --- a/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json @@ -22,7 +22,7 @@ "entityKey": "diagnosticDataBlockSubmission", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -38,7 +38,7 @@ "entityKey": "screenCaptureBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -46,7 +46,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -71,7 +71,7 @@ "entityKey": "certificatesBlockUntrustedTlsCertificates", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -88,7 +88,7 @@ "entityKey": "pkiBlockOTAUpdates", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -105,7 +105,7 @@ "entityKey": "privacyForceLimitAdTracking", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -122,24 +122,7 @@ "entityKey": "enterpriseAppBlockTrust", "booleanActions": 9, "defaultValue": false, - "policyType": 45, - "enabled": true - }, - { - "dataType": 0, - "category": 41, - "nameResourceKey": "blockAppClipsName", - "descriptionResourceKey": "blockAppClipsDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "appClipsBlocked", - "booleanActions": 9, - "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -156,7 +139,7 @@ "entityKey": "applePersonalizedAdsBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -164,7 +147,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -189,7 +172,7 @@ "entityKey": "diagnosticDataBlockSubmissionModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -206,7 +189,7 @@ "entityKey": "classroomAppBlockRemoteScreenObservation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -223,7 +206,7 @@ "entityKey": "classroomAppForceUnpromptedScreenObservation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -239,7 +222,7 @@ "entityKey": "accountBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -256,7 +239,7 @@ "entityKey": "deviceBlockEnableRestrictions", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -273,7 +256,7 @@ "entityKey": "deviceBlockEraseContentAndSettings", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -289,7 +272,7 @@ "entityKey": "deviceBlockNameModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -305,7 +288,7 @@ "entityKey": "notificationsBlockSettingsModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -322,7 +305,7 @@ "entityKey": "wallpaperBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -338,7 +321,7 @@ "entityKey": "configurationProfileBlockChanges", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -355,7 +338,7 @@ "entityKey": "activationLockAllowWhenSupervised", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -372,7 +355,24 @@ "entityKey": "appRemovalBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, + "enabled": true + }, + { + "dataType": 0, + "category": 41, + "nameResourceKey": "blockAppClipsName", + "descriptionResourceKey": "blockAppClipsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appClipsBlocked", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, "enabled": true }, { @@ -389,7 +389,7 @@ "entityKey": "usbRestrictedModeBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -406,7 +406,7 @@ "entityKey": "dateAndTimeForceSetAutomatically", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -423,7 +423,7 @@ "entityKey": "classroomForceRequestPermissionToLeaveClasses", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -440,7 +440,7 @@ "entityKey": "classroomForceUnpromptedAppAndDeviceLock", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -457,7 +457,7 @@ "entityKey": "classroomForceAutomaticallyJoinClasses", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -474,7 +474,7 @@ "entityKey": "vpnBlockCreation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -491,7 +491,7 @@ "entityKey": "esimBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -514,7 +514,7 @@ "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, "defaultValue": 30, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -524,7 +524,7 @@ "entityKey": "softwareUpdatesForceDelayed", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -532,7 +532,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicerestrictions_macgeneral.json b/Documentation/ObjectInfo/devicerestrictions_macgeneral.json index 3021086..6834e51 100644 --- a/Documentation/ObjectInfo/devicerestrictions_macgeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_macgeneral.json @@ -22,7 +22,7 @@ "entityKey": "definitionLookupBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -39,7 +39,7 @@ "entityKey": "keyboardBlockDictation", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -55,7 +55,7 @@ "entityKey": "contentCachingBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -71,7 +71,7 @@ "entityKey": "screenCaptureBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -79,7 +79,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -117,7 +117,7 @@ "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, "defaultValue": 30, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -141,7 +141,7 @@ "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, "defaultValue": 30, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -150,7 +150,7 @@ ], "entityKey": "updateDelayPolicy", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -158,7 +158,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -183,7 +183,7 @@ "entityKey": "classroomAppBlockRemoteScreenObservation", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -200,7 +200,7 @@ "entityKey": "classroomAppForceUnpromptedScreenObservation", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -217,7 +217,7 @@ "entityKey": "classroomForceRequestPermissionToLeaveClasses", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -234,7 +234,7 @@ "entityKey": "classroomForceUnpromptedAppAndDeviceLock", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -251,7 +251,7 @@ "entityKey": "classroomForceAutomaticallyJoinClasses", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -259,7 +259,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicerestrictions_windows10general.json b/Documentation/ObjectInfo/devicerestrictions_windows10general.json index 69e600f..2928d99 100644 --- a/Documentation/ObjectInfo/devicerestrictions_windows10general.json +++ b/Documentation/ObjectInfo/devicerestrictions_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "screenCaptureBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "copyPasteBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "deviceManagementBlockManualUnenroll", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "certificatesBlockManualRootCertificateInstallation", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "cameraBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "oneDriveDisableFileSync", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -116,7 +116,7 @@ "entityKey": "storageBlockRemovableStorage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -133,7 +133,7 @@ "entityKey": "locationServicesBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -150,7 +150,7 @@ "entityKey": "internetSharingBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -167,7 +167,7 @@ "entityKey": "deviceManagementBlockFactoryResetOnMobile", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -184,7 +184,7 @@ "entityKey": "usbBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -201,7 +201,7 @@ "entityKey": "antiTheftModeBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -218,7 +218,7 @@ "entityKey": "cortanaBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -235,7 +235,7 @@ "entityKey": "voiceRecordingBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -252,7 +252,7 @@ "entityKey": "settingsBlockEditDeviceName", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -269,7 +269,7 @@ "entityKey": "settingsBlockAddProvisioningPackage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -286,7 +286,7 @@ "entityKey": "settingsBlockRemoveProvisioningPackage", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -303,7 +303,7 @@ "entityKey": "experienceBlockDeviceDiscovery", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -320,7 +320,7 @@ "entityKey": "experienceBlockTaskSwitcher", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -337,7 +337,7 @@ "entityKey": "experienceBlockErrorDialogWhenNoSIM", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -369,7 +369,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -386,7 +386,7 @@ "entityKey": "enableAutomaticRedeployment", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -403,7 +403,7 @@ "entityKey": "tenantLockdownRequireNetworkDuringOutOfBoxExperience", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -432,7 +432,7 @@ ], "entityKey": "dataProtectionBlockDirectMemoryAccess", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -450,7 +450,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicerestrictions_windows8general.json b/Documentation/ObjectInfo/devicerestrictions_windows8general.json index 1aba2e4..d658b56 100644 --- a/Documentation/ObjectInfo/devicerestrictions_windows8general.json +++ b/Documentation/ObjectInfo/devicerestrictions_windows8general.json @@ -14,7 +14,7 @@ "entityKey": "diagnosticsBlockDataSubmission", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -30,7 +30,7 @@ ], "entityKey": "browserRequireFirewall", "booleanActions": 1, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -72,7 +72,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 91, + "policyType": 92, "enabled": true } ] diff --git a/Documentation/ObjectInfo/devicerestrictions_windowsphonegeneral.json b/Documentation/ObjectInfo/devicerestrictions_windowsphonegeneral.json index b0c6130..c8a15c7 100644 --- a/Documentation/ObjectInfo/devicerestrictions_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_windowsphonegeneral.json @@ -14,7 +14,7 @@ "entityKey": "cameraBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "appsBlockCopyPaste", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "storageBlockRemovableStorage", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "locationServicesBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "microsoftAccountBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "screenCaptureBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -116,7 +116,7 @@ "entityKey": "diagnosticDataBlockSubmission", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -133,7 +133,7 @@ "entityKey": "emailBlockAddingAccounts", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true } ] diff --git a/Documentation/ObjectInfo/display_windows10general.json b/Documentation/ObjectInfo/display_windows10general.json index edf3cec..6162def 100644 --- a/Documentation/ObjectInfo/display_windows10general.json +++ b/Documentation/ObjectInfo/display_windows10general.json @@ -16,7 +16,7 @@ ], "entityKey": "gdiAppListColumn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -33,7 +33,7 @@ ], "entityKey": "displayAppListWithGdiDPIScalingTurnedOn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -52,7 +52,7 @@ ], "entityKey": "gdiAppListColumn", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -69,7 +69,7 @@ ], "entityKey": "displayAppListWithGdiDPIScalingTurnedOff", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/domainjoin_windowsdomainjoin.json b/Documentation/ObjectInfo/domainjoin_windowsdomainjoin.json index 53b9df4..be71767 100644 --- a/Documentation/ObjectInfo/domainjoin_windowsdomainjoin.json +++ b/Documentation/ObjectInfo/domainjoin_windowsdomainjoin.json @@ -2,7 +2,7 @@ "domainjoin_windowsdomainjoin": [ { "dataType": 20, - "category": 132, + "category": 133, "nameResourceKey": "computerNameStaticPrefixName", "descriptionResourceKey": "computerNameStaticPrefixDescription", "childSettings": [ @@ -13,12 +13,12 @@ ], "entityKey": "computerNameStaticPrefix", "booleanActions": 0, - "policyType": 105, + "policyType": 106, "enabled": true }, { "dataType": 20, - "category": 132, + "category": 133, "nameResourceKey": "activeDirectoryDomainNameName", "descriptionResourceKey": "activeDirectoryDomainNameDescription", "childSettings": [ @@ -29,12 +29,12 @@ ], "entityKey": "activeDirectoryDomainName", "booleanActions": 0, - "policyType": 105, + "policyType": 106, "enabled": true }, { "dataType": 20, - "category": 132, + "category": 133, "nameResourceKey": "organizationalUnitName", "descriptionResourceKey": "organizationalUnitDescription", "childSettings": [ @@ -45,7 +45,7 @@ ], "entityKey": "organizationalUnit", "booleanActions": 0, - "policyType": 105, + "policyType": 106, "enabled": true } ] diff --git a/Documentation/ObjectInfo/domains_iosgeneral.json b/Documentation/ObjectInfo/domains_iosgeneral.json index d3716c7..9a7de19 100644 --- a/Documentation/ObjectInfo/domains_iosgeneral.json +++ b/Documentation/ObjectInfo/domains_iosgeneral.json @@ -23,7 +23,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -42,7 +42,7 @@ ], "entityKey": "emailInDomainSuffixes", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -58,7 +58,7 @@ ], "entityKey": "emailInDomainSuffixes", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -72,7 +72,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -90,7 +90,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -109,7 +109,7 @@ ], "entityKey": "safariManagedDomains", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -125,7 +125,7 @@ ], "entityKey": "safariManagedDomains", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -139,7 +139,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -147,7 +147,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -173,7 +173,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "safariPasswordAutoFillDomains", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -208,7 +208,7 @@ ], "entityKey": "safariPasswordAutoFillDomains", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -222,7 +222,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -230,7 +230,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/domains_macgeneral.json b/Documentation/ObjectInfo/domains_macgeneral.json index d7220aa..faa5dc1 100644 --- a/Documentation/ObjectInfo/domains_macgeneral.json +++ b/Documentation/ObjectInfo/domains_macgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -40,7 +40,7 @@ ], "entityKey": "emailInDomainSuffixes", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } @@ -57,7 +57,7 @@ ], "entityKey": "emailInDomainSuffixes", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -65,7 +65,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ] diff --git a/Documentation/ObjectInfo/edgebrowser_windows10general.json b/Documentation/ObjectInfo/edgebrowser_windows10general.json index efb93f5..12839f0 100644 --- a/Documentation/ObjectInfo/edgebrowser_windows10general.json +++ b/Documentation/ObjectInfo/edgebrowser_windows10general.json @@ -29,7 +29,7 @@ ], "entityKey": "edgeStartPageUrls", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -55,7 +55,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -82,7 +82,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -109,7 +109,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -126,7 +126,7 @@ ], "entityKey": "edgeNewTabPageURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -167,7 +167,7 @@ ], "entityKey": "homeButtonCustomURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -181,7 +181,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -197,7 +197,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -224,7 +224,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -247,7 +247,7 @@ ], "entityKey": "edgeFirstRunUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -267,7 +267,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -294,7 +294,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -321,7 +321,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -338,7 +338,7 @@ ], "entityKey": "edgeEnterpriseModeSiteListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -370,7 +370,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -397,7 +397,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -424,7 +424,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -451,7 +451,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -465,7 +465,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -499,7 +499,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -522,7 +522,7 @@ ], "entityKey": "edgeFavoritesListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -542,7 +542,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -569,7 +569,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -596,7 +596,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -620,7 +620,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -635,7 +635,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -650,7 +650,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -674,7 +674,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -689,7 +689,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -704,7 +704,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -728,7 +728,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -743,7 +743,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -758,7 +758,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -782,7 +782,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -797,7 +797,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -812,7 +812,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -836,7 +836,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -853,7 +853,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -868,7 +868,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -879,7 +879,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -906,7 +906,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -920,7 +920,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -949,7 +949,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -976,7 +976,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1003,7 +1003,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1035,7 +1035,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1062,7 +1062,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1094,7 +1094,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1121,7 +1121,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1148,7 +1148,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1175,7 +1175,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1202,7 +1202,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1229,7 +1229,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1243,7 +1243,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -1272,7 +1272,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1299,7 +1299,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1326,7 +1326,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1353,7 +1353,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1380,7 +1380,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1407,7 +1407,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1434,7 +1434,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1461,7 +1461,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1488,7 +1488,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1507,7 +1507,7 @@ ], "entityKey": "requiredExtensionsColumnHeader", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -1524,7 +1524,7 @@ ], "entityKey": "edgeRequiredExtensionPackageFamilyNames", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1538,7 +1538,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": false }, { @@ -1583,7 +1583,7 @@ ], "entityKey": "edgeStartPageUrls", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1609,7 +1609,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1636,7 +1636,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1663,7 +1663,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1680,7 +1680,7 @@ ], "entityKey": "edgeNewTabPageURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1721,7 +1721,7 @@ ], "entityKey": "homeButtonCustomURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1735,7 +1735,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1751,7 +1751,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1778,7 +1778,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1801,7 +1801,7 @@ ], "entityKey": "edgeFirstRunUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -1821,7 +1821,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1848,7 +1848,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1875,7 +1875,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1892,7 +1892,7 @@ ], "entityKey": "edgeEnterpriseModeSiteListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1924,7 +1924,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1951,7 +1951,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -1978,7 +1978,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2005,7 +2005,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2019,7 +2019,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2053,7 +2053,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2076,7 +2076,7 @@ ], "entityKey": "edgeFavoritesListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2096,7 +2096,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2123,7 +2123,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2150,7 +2150,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2174,7 +2174,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2189,7 +2189,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2204,7 +2204,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2228,7 +2228,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2243,7 +2243,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2258,7 +2258,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2282,7 +2282,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2297,7 +2297,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2312,7 +2312,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2336,7 +2336,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2351,7 +2351,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2366,7 +2366,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2390,7 +2390,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2407,7 +2407,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2422,7 +2422,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2433,7 +2433,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2460,7 +2460,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2474,7 +2474,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2503,7 +2503,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2530,7 +2530,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2557,7 +2557,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2589,7 +2589,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2616,7 +2616,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2648,7 +2648,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2675,7 +2675,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2702,7 +2702,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2729,7 +2729,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2756,7 +2756,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2783,7 +2783,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -2797,7 +2797,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2826,7 +2826,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2853,7 +2853,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2880,7 +2880,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2907,7 +2907,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2934,7 +2934,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2961,7 +2961,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -2988,7 +2988,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3015,7 +3015,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3042,7 +3042,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3061,7 +3061,7 @@ ], "entityKey": "requiredExtensionsColumnHeader", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -3078,7 +3078,7 @@ ], "entityKey": "edgeRequiredExtensionPackageFamilyNames", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3092,7 +3092,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3121,7 +3121,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3136,7 +3136,7 @@ ], "entityKey": "edgeOpensWith", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3153,7 +3153,7 @@ ], "entityKey": "edgeStartPageUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3170,7 +3170,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3184,7 +3184,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3198,7 +3198,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3231,7 +3231,7 @@ "entityKey": "edgeCookiePolicy", "booleanActions": 0, "defaultValue": "allow", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3258,7 +3258,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3272,7 +3272,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3280,7 +3280,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3316,7 +3316,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3333,7 +3333,7 @@ ], "entityKey": "homeButtonCustomURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3347,7 +3347,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3366,7 +3366,7 @@ "entityKey": "edgeDisplayHomeButton", "booleanActions": 0, "defaultValue": true, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3381,7 +3381,7 @@ ], "entityKey": "edgeOpensWith", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3398,7 +3398,7 @@ ], "entityKey": "edgeStartPageUrls", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3416,7 +3416,7 @@ "entityKey": "edgeNewTabPageURL", "booleanActions": 0, "defaultValue": "about:blank", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3434,7 +3434,7 @@ "entityKey": "edgeKioskResetAfterIdleTimeInMinutes", "booleanActions": 0, "defaultValue": 5, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3461,7 +3461,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3475,7 +3475,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3503,7 +3503,7 @@ "entityKey": "edgeFavoritesBarVisibility", "booleanActions": 0, "defaultValue": "hide", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3526,7 +3526,7 @@ ], "entityKey": "edgeFavoritesListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3545,7 +3545,7 @@ "entityKey": "edgeProvideFavoritesList", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3572,7 +3572,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3599,7 +3599,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3623,7 +3623,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3638,7 +3638,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3653,7 +3653,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3677,7 +3677,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3692,7 +3692,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3707,7 +3707,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3731,7 +3731,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3746,7 +3746,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3761,7 +3761,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3785,7 +3785,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3802,7 +3802,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3817,7 +3817,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3828,7 +3828,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3855,7 +3855,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3869,7 +3869,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3902,7 +3902,7 @@ "entityKey": "edgeCookiePolicy", "booleanActions": 0, "defaultValue": "allow", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3929,7 +3929,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3943,7 +3943,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -3951,7 +3951,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -3966,7 +3966,7 @@ ], "entityKey": "edgeBlockAccessToAboutFlags", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4002,7 +4002,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4019,7 +4019,7 @@ ], "entityKey": "homeButtonCustomURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4033,7 +4033,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4060,7 +4060,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4079,7 +4079,7 @@ "entityKey": "edgeDisplayHomeButton", "booleanActions": 0, "defaultValue": true, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4094,7 +4094,7 @@ ], "entityKey": "edgeOpensWith", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4111,7 +4111,7 @@ ], "entityKey": "edgeStartPageUrls", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4129,7 +4129,7 @@ "entityKey": "edgeNewTabPageURL", "booleanActions": 0, "defaultValue": "about:blank", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4156,7 +4156,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4170,7 +4170,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4204,7 +4204,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4227,7 +4227,7 @@ ], "entityKey": "edgeFavoritesListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4246,7 +4246,7 @@ "entityKey": "edgeProvideFavoritesList", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4273,7 +4273,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4300,7 +4300,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4324,7 +4324,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4339,7 +4339,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4354,7 +4354,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4378,7 +4378,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4393,7 +4393,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4408,7 +4408,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4432,7 +4432,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4447,7 +4447,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4462,7 +4462,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4486,7 +4486,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4503,7 +4503,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4518,7 +4518,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4529,7 +4529,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4556,7 +4556,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4583,7 +4583,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4597,7 +4597,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4626,7 +4626,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4653,7 +4653,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4680,7 +4680,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4707,7 +4707,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4738,7 +4738,7 @@ "entityKey": "edgeCookiePolicy", "booleanActions": 0, "defaultValue": "allow", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4765,7 +4765,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4792,7 +4792,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4806,7 +4806,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4835,7 +4835,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4862,7 +4862,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4876,7 +4876,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4884,7 +4884,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4899,7 +4899,7 @@ ], "entityKey": "edgeBlockAccessToAboutFlags", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4914,7 +4914,7 @@ ], "entityKey": "edgeBlockDeveloperTools", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4950,7 +4950,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -4967,7 +4967,7 @@ ], "entityKey": "homeButtonCustomURL", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -4981,7 +4981,7 @@ ], "entityKey": "edgeHomeButtonConfiguration", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5000,7 +5000,7 @@ "entityKey": "edgeDisplayHomeButton", "booleanActions": 0, "defaultValue": true, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5015,7 +5015,7 @@ ], "entityKey": "edgeOpensWith", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5032,7 +5032,7 @@ ], "entityKey": "edgeStartPageUrls", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5050,7 +5050,7 @@ "entityKey": "edgeNewTabPageURL", "booleanActions": 0, "defaultValue": "about:blank", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5077,7 +5077,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5091,7 +5091,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5119,7 +5119,7 @@ "entityKey": "edgeFavoritesBarVisibility", "booleanActions": 0, "defaultValue": "hide", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5142,7 +5142,7 @@ ], "entityKey": "edgeFavoritesListLocation", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5161,7 +5161,7 @@ "entityKey": "edgeProvideFavoritesList", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5188,7 +5188,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5215,7 +5215,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5239,7 +5239,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5254,7 +5254,7 @@ ], "entityKey": "edgeSearchEngineType", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5269,7 +5269,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5293,7 +5293,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5308,7 +5308,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5323,7 +5323,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5347,7 +5347,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5362,7 +5362,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5377,7 +5377,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5401,7 +5401,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5418,7 +5418,7 @@ ], "entityKey": "edgeSearchEngineOpenSearchXmlUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5433,7 +5433,7 @@ ], "entityKey": "edgeSearchEngine", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5444,7 +5444,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5471,7 +5471,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5485,7 +5485,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5518,7 +5518,7 @@ "entityKey": "edgeCookiePolicy", "booleanActions": 0, "defaultValue": "allow", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5545,7 +5545,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5559,7 +5559,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5567,7 +5567,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -5582,7 +5582,7 @@ ], "entityKey": "edgeBlockAccessToAboutFlags", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -5593,7 +5593,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/edgebrowsersmartscreen_windows10general.json b/Documentation/ObjectInfo/edgebrowsersmartscreen_windows10general.json index 196a63c..1503690 100644 --- a/Documentation/ObjectInfo/edgebrowsersmartscreen_windows10general.json +++ b/Documentation/ObjectInfo/edgebrowsersmartscreen_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "edgeRequireSmartScreen", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "smartScreenBlockPromptOverride", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "smartScreenBlockPromptOverrideForFiles", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/edgekiosk_windows10kiosk.json b/Documentation/ObjectInfo/edgekiosk_windows10kiosk.json index db7d98c..83f3d50 100644 --- a/Documentation/ObjectInfo/edgekiosk_windows10kiosk.json +++ b/Documentation/ObjectInfo/edgekiosk_windows10kiosk.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -45,7 +45,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -62,7 +62,7 @@ "entityKey": "edgeKioskEnablePublicBrowsing", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -78,7 +78,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ] diff --git a/Documentation/ObjectInfo/editionupgrade_windowseditionupgrade.json b/Documentation/ObjectInfo/editionupgrade_windowseditionupgrade.json index 91b6dd2..da2bc67 100644 --- a/Documentation/ObjectInfo/editionupgrade_windowseditionupgrade.json +++ b/Documentation/ObjectInfo/editionupgrade_windowseditionupgrade.json @@ -25,7 +25,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -42,7 +42,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -64,7 +64,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -81,7 +81,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -103,7 +103,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -120,7 +120,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -142,7 +142,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -159,7 +159,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -181,7 +181,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -198,7 +198,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -220,7 +220,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -237,7 +237,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -259,7 +259,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -276,7 +276,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -298,7 +298,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -315,7 +315,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -337,7 +337,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -354,7 +354,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -376,7 +376,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -393,7 +393,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -402,7 +402,7 @@ ], "entityKey": "targetEdition", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": false }, { @@ -430,7 +430,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -447,7 +447,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -469,7 +469,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -486,7 +486,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -508,7 +508,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -525,7 +525,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -547,7 +547,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -564,7 +564,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -586,7 +586,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -603,7 +603,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -625,7 +625,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -642,7 +642,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -664,7 +664,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -681,7 +681,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -703,7 +703,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -720,7 +720,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -742,7 +742,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -759,7 +759,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -781,7 +781,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -798,7 +798,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -820,7 +820,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -837,7 +837,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -859,7 +859,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -876,7 +876,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -885,7 +885,7 @@ ], "entityKey": "targetEdition", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": false }, { @@ -915,7 +915,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -929,7 +929,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -943,7 +943,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -965,7 +965,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -982,7 +982,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1004,7 +1004,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1021,7 +1021,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1043,7 +1043,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1060,7 +1060,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1082,7 +1082,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1099,7 +1099,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1121,7 +1121,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1138,7 +1138,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1160,7 +1160,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1177,7 +1177,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1199,7 +1199,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1216,7 +1216,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1238,7 +1238,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1255,7 +1255,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1277,7 +1277,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1294,7 +1294,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1316,7 +1316,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1333,7 +1333,7 @@ ], "entityKey": "productKey", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1355,7 +1355,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1372,7 +1372,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1394,7 +1394,7 @@ ], "entityKey": "licenseType", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1411,7 +1411,7 @@ ], "entityKey": "license", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ], @@ -1422,7 +1422,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1437,7 +1437,7 @@ ], "entityKey": "WindowsSModeStatus", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1452,7 +1452,7 @@ ], "entityKey": "SwitchingPolicy", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -1467,7 +1467,7 @@ ], "entityKey": "EditionUpgradeReportStatus", "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true } ] diff --git a/Documentation/ObjectInfo/educationstudentcerts_ioseducation.json b/Documentation/ObjectInfo/educationstudentcerts_ioseducation.json index 7729400..34c1ddc 100644 --- a/Documentation/ObjectInfo/educationstudentcerts_ioseducation.json +++ b/Documentation/ObjectInfo/educationstudentcerts_ioseducation.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -48,7 +48,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -66,7 +66,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -82,7 +82,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "subjectNameFormat", "booleanActions": 0, "defaultValue": "member-{UserEmail}", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -116,7 +116,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -133,7 +133,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -150,7 +150,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -166,7 +166,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -201,7 +201,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ], @@ -217,7 +217,7 @@ ], "entityKey": "studentCertificateSettings", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ], @@ -242,7 +242,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -260,7 +260,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -274,7 +274,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -291,7 +291,7 @@ "entityKey": "subjectNameFormat", "booleanActions": 0, "defaultValue": "member-{UserEmail}", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -308,7 +308,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -325,7 +325,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -342,7 +342,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -358,7 +358,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -393,7 +393,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ], @@ -409,7 +409,7 @@ ], "entityKey": "deviceCertificateSettings", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ], @@ -418,7 +418,7 @@ ], "entityKey": "StudentDeviceCertOptionPicker", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ] diff --git a/Documentation/ObjectInfo/educationtakeatest_windows10secureassessmentprofile.json b/Documentation/ObjectInfo/educationtakeatest_windows10secureassessmentprofile.json index e40a7d8..be3ff70 100644 --- a/Documentation/ObjectInfo/educationtakeatest_windows10secureassessmentprofile.json +++ b/Documentation/ObjectInfo/educationtakeatest_windows10secureassessmentprofile.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -28,7 +28,7 @@ ], "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -62,7 +62,7 @@ ], "entityKey": "configurationAccount", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true } ], @@ -86,7 +86,7 @@ ], "entityKey": "configurationAccount", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true } ], @@ -110,7 +110,7 @@ ], "entityKey": "configurationAccount", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true } ], @@ -134,7 +134,7 @@ ], "entityKey": "localGuestAccountName", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true } ], @@ -143,7 +143,7 @@ ], "entityKey": "configurationAccountType", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -160,7 +160,7 @@ ], "entityKey": "launchUri", "booleanActions": 0, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -177,7 +177,7 @@ "entityKey": "allowPrinting", "booleanActions": 1, "defaultValue": false, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -194,7 +194,7 @@ "entityKey": "allowScreenCapture", "booleanActions": 0, "defaultValue": false, - "policyType": 84, + "policyType": 85, "enabled": true }, { @@ -211,7 +211,7 @@ "entityKey": "allowTextSuggestion", "booleanActions": 0, "defaultValue": false, - "policyType": 84, + "policyType": 85, "enabled": true } ] diff --git a/Documentation/ObjectInfo/educationteachercerts_ioseducation.json b/Documentation/ObjectInfo/educationteachercerts_ioseducation.json index 10e8178..6f2fa7a 100644 --- a/Documentation/ObjectInfo/educationteachercerts_ioseducation.json +++ b/Documentation/ObjectInfo/educationteachercerts_ioseducation.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -31,7 +31,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -49,7 +49,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -65,7 +65,7 @@ ], "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "subjectNameFormat", "booleanActions": 0, "defaultValue": "leader-{UserEmail}", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -116,7 +116,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -133,7 +133,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -149,7 +149,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true }, { @@ -184,7 +184,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ], @@ -200,7 +200,7 @@ ], "entityKey": "teacherCertificateSettings", "booleanActions": 0, - "policyType": 43, + "policyType": 44, "enabled": true } ] diff --git a/Documentation/ObjectInfo/emailprofile_iosemailprofile.json b/Documentation/ObjectInfo/emailprofile_iosemailprofile.json index 06d82d5..e1dd5ed 100644 --- a/Documentation/ObjectInfo/emailprofile_iosemailprofile.json +++ b/Documentation/ObjectInfo/emailprofile_iosemailprofile.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -30,7 +30,7 @@ ], "entityKey": "hostName", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -47,7 +47,7 @@ ], "entityKey": "accountName", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -76,7 +76,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": false }, { @@ -145,7 +145,7 @@ ], "entityKey": "userDomainNameSource", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -169,7 +169,7 @@ ], "entityKey": "customDomainName", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -178,7 +178,7 @@ ], "entityKey": "domainNameSourceType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -187,7 +187,7 @@ ], "entityKey": "usernameAADSource", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -202,7 +202,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -231,7 +231,7 @@ ], "entityKey": "emailAddressSource", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -266,7 +266,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -282,7 +282,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -312,7 +312,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -326,7 +326,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -335,7 +335,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -344,7 +344,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -370,7 +370,7 @@ "entityKey": "requireSsl", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -396,7 +396,7 @@ "entityKey": "useOAuth", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -412,7 +412,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -454,7 +454,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -498,7 +498,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -524,7 +524,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -563,7 +563,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -577,7 +577,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -586,7 +586,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -611,7 +611,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -627,7 +627,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -636,7 +636,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -662,7 +662,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -688,7 +688,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -714,7 +714,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -740,7 +740,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -779,7 +779,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -793,7 +793,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -802,7 +802,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -827,7 +827,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -843,7 +843,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -852,7 +852,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -878,7 +878,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -889,7 +889,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -941,7 +941,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -967,7 +967,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -993,7 +993,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1019,7 +1019,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1042,7 +1042,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1086,7 +1086,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1112,7 +1112,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1151,7 +1151,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1165,7 +1165,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1174,7 +1174,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1199,7 +1199,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1215,7 +1215,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1224,7 +1224,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1250,7 +1250,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1276,7 +1276,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1302,7 +1302,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1328,7 +1328,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1367,7 +1367,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1381,7 +1381,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1390,7 +1390,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1415,7 +1415,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1431,7 +1431,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1440,7 +1440,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1466,7 +1466,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1477,7 +1477,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1529,7 +1529,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1555,7 +1555,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1581,7 +1581,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1607,7 +1607,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1617,7 +1617,7 @@ "entityKey": "easServicesUserOverrideEnabled", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1653,7 +1653,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1697,7 +1697,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1723,7 +1723,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1762,7 +1762,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1776,7 +1776,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1785,7 +1785,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1810,7 +1810,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1826,7 +1826,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -1835,7 +1835,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1861,7 +1861,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1887,7 +1887,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1913,7 +1913,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1939,7 +1939,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1978,7 +1978,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -1992,7 +1992,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2001,7 +2001,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2026,7 +2026,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2042,7 +2042,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2051,7 +2051,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2077,7 +2077,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2088,7 +2088,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2140,7 +2140,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2166,7 +2166,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2192,7 +2192,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2218,7 +2218,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2241,7 +2241,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2285,7 +2285,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2311,7 +2311,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2350,7 +2350,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2364,7 +2364,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2373,7 +2373,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2398,7 +2398,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2414,7 +2414,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2423,7 +2423,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2449,7 +2449,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2475,7 +2475,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2501,7 +2501,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2527,7 +2527,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2566,7 +2566,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2580,7 +2580,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2589,7 +2589,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2614,7 +2614,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2630,7 +2630,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2639,7 +2639,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2665,7 +2665,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2676,7 +2676,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2728,7 +2728,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2754,7 +2754,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2780,7 +2780,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2806,7 +2806,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2816,7 +2816,7 @@ "entityKey": "easServicesUserOverrideEnabled", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2852,7 +2852,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2896,7 +2896,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2922,7 +2922,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2961,7 +2961,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -2975,7 +2975,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -2984,7 +2984,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3009,7 +3009,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3025,7 +3025,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3034,7 +3034,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3060,7 +3060,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3086,7 +3086,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3112,7 +3112,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3138,7 +3138,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3177,7 +3177,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3191,7 +3191,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3200,7 +3200,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3225,7 +3225,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3241,7 +3241,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3250,7 +3250,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3276,7 +3276,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3287,7 +3287,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3339,7 +3339,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3365,7 +3365,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3391,7 +3391,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3417,7 +3417,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3432,7 +3432,7 @@ "entityKey": "easServicesUserOverrideEnabled", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3468,7 +3468,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3512,7 +3512,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3538,7 +3538,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3577,7 +3577,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3591,7 +3591,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3600,7 +3600,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3625,7 +3625,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3641,7 +3641,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3650,7 +3650,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3676,7 +3676,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3702,7 +3702,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3728,7 +3728,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3754,7 +3754,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3793,7 +3793,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3807,7 +3807,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3816,7 +3816,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3841,7 +3841,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3857,7 +3857,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3866,7 +3866,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3892,7 +3892,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -3903,7 +3903,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3955,7 +3955,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -3981,7 +3981,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4007,7 +4007,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4033,7 +4033,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4048,7 +4048,7 @@ "entityKey": "easServicesUserOverrideEnabled", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4084,7 +4084,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4128,7 +4128,7 @@ "entityKey": "smimeSigningEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4154,7 +4154,7 @@ "entityKey": "smimeSigningUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4193,7 +4193,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4207,7 +4207,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4216,7 +4216,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4241,7 +4241,7 @@ ], "entityKey": "smimeSigningCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4257,7 +4257,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4266,7 +4266,7 @@ ], "entityKey": "signingCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4292,7 +4292,7 @@ "entityKey": "smimeSigningCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4318,7 +4318,7 @@ "entityKey": "smimeEncryptByDefaultEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4344,7 +4344,7 @@ "entityKey": "smimeEncryptByDefaultUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4370,7 +4370,7 @@ "entityKey": "smimeEnablePerMessageSwitch", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4409,7 +4409,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4423,7 +4423,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4432,7 +4432,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4457,7 +4457,7 @@ ], "entityKey": "smimeEncryptionCertificate", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4473,7 +4473,7 @@ ], "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4482,7 +4482,7 @@ ], "entityKey": "encryptionCertificateType", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4508,7 +4508,7 @@ "entityKey": "smimeEncryptionCertificateUserOverrideEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4519,7 +4519,7 @@ "booleanActions": 0, "defaultValue": "false", "unconfiguredValue": "false", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4571,7 +4571,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4597,7 +4597,7 @@ "entityKey": "blockMovingMessagesToOtherEmailAccounts", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4623,7 +4623,7 @@ "entityKey": "blockSendingEmailFromThirdPartyApps", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4649,7 +4649,7 @@ "entityKey": "blockSyncingRecentlyUsedEmailAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4664,7 +4664,7 @@ "entityKey": "easServicesUserOverrideEnabled", "booleanActions": 0, "defaultValue": true, - "policyType": 44, + "policyType": 45, "enabled": true } ], @@ -4674,7 +4674,7 @@ "entityKey": "easServices", "booleanActions": 0, "defaultValue": "calendars, contacts, email, notes, reminders", - "policyType": 44, + "policyType": 45, "enabled": true }, { @@ -4690,7 +4690,7 @@ ], "entityKey": "perAppVPNProfileId", "booleanActions": 0, - "policyType": 44, + "policyType": 45, "enabled": true } ] diff --git a/Documentation/ObjectInfo/emailprofile_windows10emailprofile.json b/Documentation/ObjectInfo/emailprofile_windows10emailprofile.json index 190b634..88392a0 100644 --- a/Documentation/ObjectInfo/emailprofile_windows10emailprofile.json +++ b/Documentation/ObjectInfo/emailprofile_windows10emailprofile.json @@ -14,7 +14,7 @@ ], "entityKey": "hostName", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -31,7 +31,7 @@ ], "entityKey": "accountName", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -60,7 +60,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": false }, { @@ -129,7 +129,7 @@ ], "entityKey": "userDomainNameSource", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true } ], @@ -153,7 +153,7 @@ ], "entityKey": "customDomainName", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true } ], @@ -162,7 +162,7 @@ ], "entityKey": "domainNameSourceType", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true } ], @@ -171,7 +171,7 @@ ], "entityKey": "usernameAADSource", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -186,7 +186,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -215,7 +215,7 @@ ], "entityKey": "emailAddressSource", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -231,7 +231,7 @@ ], "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -257,7 +257,7 @@ "entityKey": "requireSsl", "booleanActions": 0, "defaultValue": true, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -274,7 +274,7 @@ ], "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -326,7 +326,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -377,7 +377,7 @@ "entityKey": "emailSyncSchedule", "booleanActions": 0, "defaultValue": "manual", - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -394,7 +394,7 @@ ], "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -418,7 +418,7 @@ ], "entityKey": "syncContacts", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -442,7 +442,7 @@ ], "entityKey": "syncCalendar", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true }, { @@ -466,7 +466,7 @@ ], "entityKey": "syncTasks", "booleanActions": 0, - "policyType": 75, + "policyType": 76, "enabled": true } ] diff --git a/Documentation/ObjectInfo/emailprofile_windowsphoneemailprofile.json b/Documentation/ObjectInfo/emailprofile_windowsphoneemailprofile.json index aebb475..7343b58 100644 --- a/Documentation/ObjectInfo/emailprofile_windowsphoneemailprofile.json +++ b/Documentation/ObjectInfo/emailprofile_windowsphoneemailprofile.json @@ -14,7 +14,7 @@ ], "entityKey": "hostName", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -31,7 +31,7 @@ ], "entityKey": "accountName", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -60,7 +60,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": false }, { @@ -129,7 +129,7 @@ ], "entityKey": "userDomainNameSource", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true } ], @@ -153,7 +153,7 @@ ], "entityKey": "customDomainName", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true } ], @@ -162,7 +162,7 @@ ], "entityKey": "domainNameSourceType", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true } ], @@ -171,7 +171,7 @@ ], "entityKey": "usernameAADSource", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -186,7 +186,7 @@ ], "entityKey": "usernameSource", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -215,7 +215,7 @@ ], "entityKey": "emailAddressSource", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -231,7 +231,7 @@ ], "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -257,7 +257,7 @@ "entityKey": "requireSsl", "booleanActions": 0, "defaultValue": true, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -274,7 +274,7 @@ ], "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -326,7 +326,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -377,7 +377,7 @@ "entityKey": "emailSyncSchedule", "booleanActions": 0, "defaultValue": "manual", - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -394,7 +394,7 @@ ], "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -418,7 +418,7 @@ ], "entityKey": "syncContacts", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -442,7 +442,7 @@ ], "entityKey": "syncCalendar", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true }, { @@ -466,7 +466,7 @@ ], "entityKey": "syncTasks", "booleanActions": 0, - "policyType": 99, + "policyType": 100, "enabled": true } ] diff --git a/Documentation/ObjectInfo/enterprisedataprotection_windows10enterprisedataprotection.json b/Documentation/ObjectInfo/enterprisedataprotection_windows10enterprisedataprotection.json index 12d89d6..3b16aaf 100644 --- a/Documentation/ObjectInfo/enterprisedataprotection_windows10enterprisedataprotection.json +++ b/Documentation/ObjectInfo/enterprisedataprotection_windows10enterprisedataprotection.json @@ -18,7 +18,7 @@ ], "entityKey": "Name(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -36,7 +36,7 @@ ], "entityKey": "Type(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } } @@ -52,7 +52,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -72,7 +72,7 @@ "entityKey": "Publisher", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -91,7 +91,7 @@ "entityKey": "Product", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -110,7 +110,7 @@ "entityKey": "File", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -129,7 +129,7 @@ "entityKey": "Version", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -162,7 +162,7 @@ "entityKey": "VersionRule", "booleanActions": 0, "defaultValue": "And Above", - "policyType": 77, + "policyType": 78, "enabled": true } } @@ -178,7 +178,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } ], @@ -195,7 +195,7 @@ "entityKey": "appRules", "booleanActions": 0, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -216,7 +216,7 @@ ], "entityKey": "Name(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -234,7 +234,7 @@ ], "entityKey": "Type(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } } @@ -250,7 +250,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -270,7 +270,7 @@ "entityKey": "Publisher", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -289,7 +289,7 @@ "entityKey": "Product", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -308,7 +308,7 @@ "entityKey": "File", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -327,7 +327,7 @@ "entityKey": "Version", "booleanActions": 0, "defaultValue": "*", - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -360,7 +360,7 @@ "entityKey": "VersionRule", "booleanActions": 0, "defaultValue": "And Above", - "policyType": 77, + "policyType": 78, "enabled": true } } @@ -376,7 +376,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } ], @@ -393,7 +393,7 @@ "entityKey": "appRules", "booleanActions": 0, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -428,7 +428,7 @@ ], "booleanActions": 0, "defaultValue": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -443,7 +443,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -462,7 +462,7 @@ ], "entityKey": "Description(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -509,7 +509,7 @@ ], "entityKey": "Type(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } }, @@ -527,7 +527,7 @@ ], "entityKey": "Location(NL)", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } } @@ -543,7 +543,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -558,7 +558,7 @@ ], "booleanActions": 2, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -573,7 +573,7 @@ ], "booleanActions": 2, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -591,7 +591,7 @@ ], "entityKey": "", "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -607,7 +607,7 @@ ], "booleanActions": 2, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -623,7 +623,7 @@ ], "booleanActions": 2, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -644,7 +644,7 @@ ], "booleanActions": 0, - "policyType": 77, + "policyType": 78, "enabled": true } ], @@ -654,7 +654,7 @@ "entityKey": "TODO bug 701262", "booleanActions": 0, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -670,7 +670,7 @@ ], "booleanActions": 2, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true }, { @@ -686,7 +686,7 @@ ], "booleanActions": 2, "defaultValue": false, - "policyType": 77, + "policyType": 78, "enabled": true } ] diff --git a/Documentation/ObjectInfo/expeditedcheckin_iosexpeditedcheckin.json b/Documentation/ObjectInfo/expeditedcheckin_iosexpeditedcheckin.json index 61b692e..0bfb1e9 100644 --- a/Documentation/ObjectInfo/expeditedcheckin_iosexpeditedcheckin.json +++ b/Documentation/ObjectInfo/expeditedcheckin_iosexpeditedcheckin.json @@ -13,7 +13,7 @@ "entityKey": "enableExpeditedCheckin", "booleanActions": 2, "defaultValue": false, - "policyType": 54, + "policyType": 55, "enabled": true } } diff --git a/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json b/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json index 7e2dcca..2f87a93 100644 --- a/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -60,7 +60,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -70,7 +70,7 @@ "entityKey": "enableSharedDeviceMode", "booleanActions": 9, "defaultValue": false, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -89,7 +89,7 @@ ], "entityKey": "bundleIdsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -106,7 +106,7 @@ ], "entityKey": "bundleIdAccessControlList", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -124,7 +124,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -159,7 +159,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -176,7 +176,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -193,7 +193,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -217,7 +217,7 @@ ], "entityKey": "extensionIdentifier", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -234,7 +234,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -253,7 +253,7 @@ ], "entityKey": "urlPrefixesColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -271,7 +271,7 @@ ], "entityKey": "urlPrefixes", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -289,7 +289,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -324,7 +324,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -341,7 +341,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -358,7 +358,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -382,7 +382,7 @@ ], "entityKey": "extensionIdentifier", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -399,7 +399,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -416,7 +416,7 @@ ], "entityKey": "realm", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -435,7 +435,7 @@ ], "entityKey": "domainsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -453,7 +453,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -471,7 +471,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -506,7 +506,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -523,7 +523,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -540,7 +540,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -564,7 +564,7 @@ ], "entityKey": "realm", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -583,7 +583,7 @@ ], "entityKey": "domainsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -601,7 +601,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -618,7 +618,7 @@ "entityKey": "blockAutomaticLogin", "booleanActions": 9, "defaultValue": false, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -635,7 +635,7 @@ "entityKey": "requireUserPresence", "booleanActions": 9, "defaultValue": false, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -652,7 +652,7 @@ "entityKey": "isDefaultRealm", "booleanActions": 9, "defaultValue": false, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -669,7 +669,7 @@ "entityKey": "blockActiveDirectorySiteAutoDiscovery", "booleanActions": 9, "defaultValue": false, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -686,7 +686,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -703,7 +703,7 @@ ], "entityKey": "activeDirectorySiteCode", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -719,7 +719,7 @@ ], "entityKey": "cacheName", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -738,7 +738,7 @@ ], "entityKey": "bundleIdsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -755,7 +755,7 @@ ], "entityKey": "credentialBundleIdAccessControlList", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -774,7 +774,7 @@ ], "entityKey": "domainRealmsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -791,7 +791,7 @@ ], "entityKey": "domainRealms", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -809,7 +809,7 @@ ], "entityKey": "singleSignOnExtensionPkinitCertificate", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -826,7 +826,7 @@ ], "entityKey": "singleSignOnExtensionPkinitCertificate", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -835,7 +835,7 @@ ], "entityKey": "singleSignOnExtensionType", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -843,7 +843,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json b/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json index f97de1d..ad1f425 100644 --- a/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json +++ b/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -60,7 +60,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -70,7 +70,7 @@ "entityKey": "enableSharedDeviceMode", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -89,7 +89,7 @@ ], "entityKey": "bundleIdsColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -106,7 +106,7 @@ ], "entityKey": "bundleIdAccessControlList", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -124,7 +124,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -159,7 +159,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -176,7 +176,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -193,7 +193,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -217,7 +217,7 @@ ], "entityKey": "extensionIdentifier", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -234,7 +234,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -253,7 +253,7 @@ ], "entityKey": "urlPrefixesColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -271,7 +271,7 @@ ], "entityKey": "urlPrefixes", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -289,7 +289,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -324,7 +324,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -341,7 +341,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -358,7 +358,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -382,7 +382,7 @@ ], "entityKey": "extensionIdentifier", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -399,7 +399,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -416,7 +416,7 @@ ], "entityKey": "realm", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -435,7 +435,7 @@ ], "entityKey": "domainsColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -453,7 +453,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -471,7 +471,7 @@ ], "entityKey": "configurationKey", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -506,7 +506,7 @@ ], "entityKey": "configurationType", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -523,7 +523,7 @@ ], "entityKey": "configurationValue", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -540,7 +540,7 @@ ], "entityKey": "configurations", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -564,7 +564,7 @@ ], "entityKey": "realm", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -583,7 +583,7 @@ ], "entityKey": "domainsColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -601,7 +601,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -618,7 +618,7 @@ "entityKey": "blockAutomaticLogin", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -635,7 +635,7 @@ "entityKey": "requireUserPresence", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -652,7 +652,7 @@ "entityKey": "isDefaultRealm", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -669,7 +669,7 @@ "entityKey": "blockActiveDirectorySiteAutoDiscovery", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -686,7 +686,7 @@ "entityKey": "passwordBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -703,7 +703,7 @@ "entityKey": "passwordEnableLocalSync", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -720,7 +720,7 @@ "entityKey": "passwordRequireActiveDirectoryComplexity", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -736,7 +736,7 @@ ], "entityKey": "passwordMinimumLength", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -752,7 +752,7 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -768,7 +768,7 @@ ], "entityKey": "passwordMinimumAgeDays", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -785,7 +785,7 @@ ], "entityKey": "passwordExpirationNotificationDays", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -801,7 +801,7 @@ ], "entityKey": "passwordExpirationDays", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -817,7 +817,7 @@ ], "entityKey": "passwordChangeUrl", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -834,7 +834,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -851,7 +851,7 @@ ], "entityKey": "activeDirectorySiteCode", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -867,7 +867,7 @@ ], "entityKey": "cacheName", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -883,7 +883,7 @@ ], "entityKey": "passwordRequirementsDescription", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -902,7 +902,7 @@ ], "entityKey": "bundleIdsColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -919,7 +919,7 @@ ], "entityKey": "credentialBundleIdAccessControlList", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -938,7 +938,7 @@ ], "entityKey": "domainRealmsColumn", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -955,7 +955,7 @@ ], "entityKey": "domainRealms", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -973,7 +973,7 @@ ], "entityKey": "singleSignOnExtensionPkinitCertificate", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -990,7 +990,7 @@ ], "entityKey": "singleSignOnExtensionPkinitCertificate", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -999,7 +999,7 @@ ], "entityKey": "singleSignOnExtensionType", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -1007,7 +1007,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ] diff --git a/Documentation/ObjectInfo/filevault_macendpointprotection.json b/Documentation/ObjectInfo/filevault_macendpointprotection.json index 1ca376b..ae06d72 100644 --- a/Documentation/ObjectInfo/filevault_macendpointprotection.json +++ b/Documentation/ObjectInfo/filevault_macendpointprotection.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -35,126 +35,133 @@ "entityKey": "fileVaultForceReEncryption", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": false }, { - "dataType": 16, + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 57, + "nameResourceKey": "macFileVaultPersonalRecoveryKeyHeader", + "childSettings": [ + { + "dataType": 12, + "category": 57, + "nameResourceKey": "macFileVaultPersonalRecoveryLocationName", + "descriptionResourceKey": "macFileVaultPersonalRecoveryLocationDescription", + "emptyValueResourceKey": "macFileVaultPersonalRecoveryLocationHint", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "fileVaultPersonalRecoveryKeyHelpMessage", + "booleanActions": 0, + "policyType": 59, + "enabled": true + }, + { + "dataType": 16, + "category": 57, + "nameResourceKey": "macFileVaultPersonalRecoveryRotationName", + "descriptionResourceKey": "macFileVaultPersonalRecoveryRotationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "oneMonthNumberOption", + "value": 1, + "enabled": true + }, + { + "nameResourceKey": "twoMonthsNumberOption", + "value": 2, + "enabled": true + }, + { + "nameResourceKey": "threeMonthsNumberOption", + "value": 3, + "enabled": true + }, + { + "nameResourceKey": "fourMonthsNumberOption", + "value": 4, + "enabled": true + }, + { + "nameResourceKey": "fiveMonthsNumberOption", + "value": 5, + "enabled": true + }, + { + "nameResourceKey": "sixMonthsNumberOption", + "value": 6, + "enabled": true + }, + { + "nameResourceKey": "sevenMonthsNumberOption", + "value": 7, + "enabled": true + }, + { + "nameResourceKey": "eightMonthsNumberOption", + "value": 8, + "enabled": true + }, + { + "nameResourceKey": "nineMonthsNumberOption", + "value": 9, + "enabled": true + }, + { + "nameResourceKey": "tenMonthsNumberOption", + "value": 10, + "enabled": true + }, + { + "nameResourceKey": "elevenMonthsNumberOption", + "value": 11, + "enabled": true + }, + { + "nameResourceKey": "twelveMonthsNumberOption", + "value": 12, + "enabled": true + } + ], + "entityKey": "fileVaultPersonalRecoveryKeyRotationInMonths", + "booleanActions": 0, + "policyType": 59, + "enabled": true + } + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 59, + "enabled": true + }, + { + "value": "personalRecoverykey", + "dataType": 9, "category": 57, - "nameResourceKey": "macFileVaultRecoveryKeyTypeName", - "descriptionResourceKey": "macFileVaultRecoveryKeyTypeDescription", "childSettings": [ ], "options": [ - { - "nameResourceKey": "macFileVaultRecoveryKeyTypePersonal", - "value": "personalRecoveryKey", - "children": [ - { - "dataType": 12, - "category": 57, - "nameResourceKey": "macFileVaultPersonalRecoveryLocationName", - "descriptionResourceKey": "macFileVaultPersonalRecoveryLocationDescription", - "emptyValueResourceKey": "macFileVaultPersonalRecoveryLocationHint", - "childSettings": [ - ], - "options": [ - - ], - "entityKey": "fileVaultPersonalRecoveryKeyHelpMessage", - "booleanActions": 0, - "policyType": 58, - "enabled": true - }, - { - "dataType": 16, - "category": 57, - "nameResourceKey": "macFileVaultPersonalRecoveryRotationName", - "descriptionResourceKey": "macFileVaultPersonalRecoveryRotationDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "oneMonthNumberOption", - "value": 1, - "enabled": true - }, - { - "nameResourceKey": "twoMonthsNumberOption", - "value": 2, - "enabled": true - }, - { - "nameResourceKey": "threeMonthsNumberOption", - "value": 3, - "enabled": true - }, - { - "nameResourceKey": "fourMonthsNumberOption", - "value": 4, - "enabled": true - }, - { - "nameResourceKey": "fiveMonthsNumberOption", - "value": 5, - "enabled": true - }, - { - "nameResourceKey": "sixMonthsNumberOption", - "value": 6, - "enabled": true - }, - { - "nameResourceKey": "sevenMonthsNumberOption", - "value": 7, - "enabled": true - }, - { - "nameResourceKey": "eightMonthsNumberOption", - "value": 8, - "enabled": true - }, - { - "nameResourceKey": "nineMonthsNumberOption", - "value": 9, - "enabled": true - }, - { - "nameResourceKey": "tenMonthsNumberOption", - "value": 10, - "enabled": true - }, - { - "nameResourceKey": "elevenMonthsNumberOption", - "value": 11, - "enabled": true - }, - { - "nameResourceKey": "twelveMonthsNumberOption", - "value": 12, - "enabled": true - } - ], - "entityKey": "fileVaultPersonalRecoveryKeyRotationInMonths", - "booleanActions": 0, - "policyType": 58, - "enabled": true - } - ], - "enabled": true - } ], "entityKey": "fileVaultSelectedRecoveryKeyTypes", "booleanActions": 0, - "defaultValue": "personalRecoveryKey", - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -170,7 +177,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -185,7 +192,7 @@ ], "entityKey": "fileVaultAllowDeferralUntilSignOut", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -202,7 +209,7 @@ "entityKey": "fileVaultHidePersonalRecoveryKey", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -299,7 +306,7 @@ ], "entityKey": "fileVaultNumberOfTimesUserCanIgnore", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -382,7 +389,7 @@ "entityKey": "fileVaultNumberOfTimesUserCanIgnore", "booleanActions": 0, "defaultValue": 1, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -392,7 +399,7 @@ "entityKey": "fileVaultDisablePromptAtSignOut", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -402,7 +409,7 @@ "entityKey": "fileVaultEnabled", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ] diff --git a/Documentation/ObjectInfo/firewall_macendpointprotection.json b/Documentation/ObjectInfo/firewall_macendpointprotection.json index b2cbd92..c81a3db 100644 --- a/Documentation/ObjectInfo/firewall_macendpointprotection.json +++ b/Documentation/ObjectInfo/firewall_macendpointprotection.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -49,7 +49,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -69,7 +69,7 @@ ], "entityKey": "bundleId", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true } } @@ -86,7 +86,7 @@ ], "entityKey": "firewallAllowedApps", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -103,7 +103,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -123,7 +123,7 @@ ], "entityKey": "bundleId", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true } } @@ -140,7 +140,7 @@ ], "entityKey": "firewallBlockedApps", "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -148,7 +148,7 @@ ], "booleanActions": 0, - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -165,7 +165,7 @@ "entityKey": "firewallEnableStealthMode", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -175,7 +175,7 @@ "entityKey": "firewallBlockAllIncoming", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ], @@ -185,7 +185,7 @@ "entityKey": "firewallEnabled", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ] diff --git a/Documentation/ObjectInfo/gatekeeper_macendpointprotection.json b/Documentation/ObjectInfo/gatekeeper_macendpointprotection.json index 856dd6c..793e446 100644 --- a/Documentation/ObjectInfo/gatekeeper_macendpointprotection.json +++ b/Documentation/ObjectInfo/gatekeeper_macendpointprotection.json @@ -33,7 +33,7 @@ "entityKey": "gatekeeperAllowedAppSource", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 58, + "policyType": 59, "enabled": true }, { @@ -50,7 +50,7 @@ "entityKey": "gatekeeperBlockOverride", "booleanActions": 9, "defaultValue": false, - "policyType": 58, + "policyType": 59, "enabled": true } ] diff --git a/Documentation/ObjectInfo/healthmonitoring_windowshealthmonitoring.json b/Documentation/ObjectInfo/healthmonitoring_windowshealthmonitoring.json index 19a2ca2..028dcd5 100644 --- a/Documentation/ObjectInfo/healthmonitoring_windowshealthmonitoring.json +++ b/Documentation/ObjectInfo/healthmonitoring_windowshealthmonitoring.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 108, + "policyType": 109, "enabled": true }, { @@ -44,7 +44,7 @@ "entityKey": "allowDeviceHealthMonitoring", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 108, + "policyType": 109, "enabled": true }, { @@ -70,7 +70,7 @@ "entityKey": "configDeviceHealthMonitoringScope", "booleanActions": 0, "defaultValue": "null", - "policyType": 108, + "policyType": 109, "enabled": true }, { @@ -96,7 +96,7 @@ "entityKey": "configDeviceHealthMonitoringScope", "booleanActions": 0, "defaultValue": "null", - "policyType": 108, + "policyType": 109, "enabled": true } ] diff --git a/Documentation/ObjectInfo/homescreenlayout_iosdevicefeatures.json b/Documentation/ObjectInfo/homescreenlayout_iosdevicefeatures.json index 854c8b3..18df659 100644 --- a/Documentation/ObjectInfo/homescreenlayout_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/homescreenlayout_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -26,7 +26,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/importedpfx_iosimportedpfx.json b/Documentation/ObjectInfo/importedpfx_iosimportedpfx.json index 2192d4e..ea9a9ef 100644 --- a/Documentation/ObjectInfo/importedpfx_iosimportedpfx.json +++ b/Documentation/ObjectInfo/importedpfx_iosimportedpfx.json @@ -30,7 +30,7 @@ ], "entityKey": "intendedPurpose", "booleanActions": 0, - "policyType": 46, + "policyType": 47, "enabled": true } } diff --git a/Documentation/ObjectInfo/importedpfx_macimportedpfx.json b/Documentation/ObjectInfo/importedpfx_macimportedpfx.json index 354fe95..ab0ca8c 100644 --- a/Documentation/ObjectInfo/importedpfx_macimportedpfx.json +++ b/Documentation/ObjectInfo/importedpfx_macimportedpfx.json @@ -30,7 +30,7 @@ ], "entityKey": "intendedPurpose", "booleanActions": 0, - "policyType": 61, + "policyType": 62, "enabled": true } } diff --git a/Documentation/ObjectInfo/importedpfx_windows10importedpfx.json b/Documentation/ObjectInfo/importedpfx_windows10importedpfx.json index 1e81e0c..a79e30b 100644 --- a/Documentation/ObjectInfo/importedpfx_windows10importedpfx.json +++ b/Documentation/ObjectInfo/importedpfx_windows10importedpfx.json @@ -27,7 +27,7 @@ ], "entityKey": "intendedPurpose", "booleanActions": 0, - "policyType": 82, + "policyType": 83, "enabled": true }, { @@ -66,7 +66,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 82, + "policyType": 83, "enabled": true } ] diff --git a/Documentation/ObjectInfo/importedpfx_windowsphoneimportedpfx.json b/Documentation/ObjectInfo/importedpfx_windowsphoneimportedpfx.json index 796a455..e3bd6a6 100644 --- a/Documentation/ObjectInfo/importedpfx_windowsphoneimportedpfx.json +++ b/Documentation/ObjectInfo/importedpfx_windowsphoneimportedpfx.json @@ -27,7 +27,7 @@ ], "entityKey": "intendedPurpose", "booleanActions": 0, - "policyType": 101, + "policyType": 102, "enabled": true }, { @@ -66,7 +66,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 101, + "policyType": 102, "enabled": true } ] diff --git a/Documentation/ObjectInfo/iosdefenderatp_complianceios.json b/Documentation/ObjectInfo/iosdefenderatp_complianceios.json index 10d2d77..940a8e8 100644 --- a/Documentation/ObjectInfo/iosdefenderatp_complianceios.json +++ b/Documentation/ObjectInfo/iosdefenderatp_complianceios.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 143, + "category": 144, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 143, + "category": 144, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/ioswallpaper_iosdevicefeatures.json b/Documentation/ObjectInfo/ioswallpaper_iosdevicefeatures.json index 9e355e7..7e1dc4b 100644 --- a/Documentation/ObjectInfo/ioswallpaper_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/ioswallpaper_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -56,7 +56,7 @@ ], "entityKey": "wallpaperImage", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -80,7 +80,7 @@ ], "entityKey": "wallpaperImage", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -104,7 +104,7 @@ ], "entityKey": "wallpaperImage", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -115,7 +115,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -123,7 +123,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/kernelextensions_macextensions.json b/Documentation/ObjectInfo/kernelextensions_macextensions.json index 9d8fcfe..bce195c 100644 --- a/Documentation/ObjectInfo/kernelextensions_macextensions.json +++ b/Documentation/ObjectInfo/kernelextensions_macextensions.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -38,7 +38,7 @@ "entityKey": "kernelExtensionOverridesAllowed", "booleanActions": 9, "defaultValue": false, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -57,7 +57,7 @@ ], "entityKey": "kernelExtensionAllowedTeamIdentifiers", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } } @@ -74,7 +74,7 @@ ], "entityKey": "kernelExtensionAllowedTeamIdentifiers", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -93,7 +93,7 @@ ], "entityKey": "bundleId", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } }, @@ -111,7 +111,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } } @@ -128,7 +128,7 @@ ], "entityKey": "kernelExtensionsAllowed", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } ], @@ -136,7 +136,7 @@ ], "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } ] diff --git a/Documentation/ObjectInfo/keyboardanddictionary_iosgeneral.json b/Documentation/ObjectInfo/keyboardanddictionary_iosgeneral.json index f703010..045d5bb 100644 --- a/Documentation/ObjectInfo/keyboardanddictionary_iosgeneral.json +++ b/Documentation/ObjectInfo/keyboardanddictionary_iosgeneral.json @@ -20,7 +20,7 @@ "entityKey": "definitionLookupBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -36,7 +36,7 @@ "entityKey": "keyboardBlockPredictive", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -52,7 +52,7 @@ "entityKey": "keyboardBlockAutoCorrect", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -68,7 +68,7 @@ "entityKey": "keyboardBlockSpellCheck", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -84,7 +84,7 @@ "entityKey": "keyboardBlockShortcuts", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -100,7 +100,7 @@ "entityKey": "keyboardBlockDictation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -117,7 +117,7 @@ "entityKey": "continuousPathKeyboardBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -125,7 +125,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } diff --git a/Documentation/ObjectInfo/kiosk_iosgeneral.json b/Documentation/ObjectInfo/kiosk_iosgeneral.json index 07aefda..f00731e 100644 --- a/Documentation/ObjectInfo/kiosk_iosgeneral.json +++ b/Documentation/ObjectInfo/kiosk_iosgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -43,7 +43,7 @@ "entityKey": "kioskModeRequireAssistiveTouch", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -59,7 +59,7 @@ "entityKey": "kioskModeRequireColorInversion", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -75,7 +75,7 @@ "entityKey": "kioskModeRequireMonoAudio", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -91,7 +91,7 @@ "entityKey": "kioskModeEnableVoiceControl", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -107,7 +107,7 @@ "entityKey": "kioskModeRequireVoiceOver", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -123,7 +123,7 @@ "entityKey": "kioskModeRequireZoom", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -139,7 +139,7 @@ "entityKey": "kioskModeBlockAutoLock", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -155,7 +155,7 @@ "entityKey": "kioskModeBlockRingerSwitch", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -171,7 +171,7 @@ "entityKey": "kioskModeBlockScreenRotation", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -187,7 +187,7 @@ "entityKey": "kioskModeBlockSleepButton", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -203,7 +203,7 @@ "entityKey": "kioskModeBlockTouchscreen", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -219,7 +219,7 @@ "entityKey": "kioskModeBlockVolumeButtons", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -235,7 +235,7 @@ "entityKey": "kioskModeAllowAssistiveTouchSettings", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -251,7 +251,7 @@ "entityKey": "kioskModeAllowColorInversionSettings", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -267,7 +267,7 @@ "entityKey": "kioskModeAllowAssistiveSpeak", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -284,7 +284,7 @@ "entityKey": "kioskModeAllowVoiceControlModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -300,7 +300,7 @@ "entityKey": "kioskModeAllowVoiceOverSettings", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -316,7 +316,7 @@ "entityKey": "kioskModeAllowZoomSettings", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -343,7 +343,7 @@ ], "entityKey": "kioskModeAppStoreUrl", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -368,7 +368,7 @@ ], "entityKey": "kioskModeManagedAppId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -384,7 +384,7 @@ ], "entityKey": "kioskModeManagedAppId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -408,7 +408,7 @@ ], "entityKey": "kioskModeBuiltInAppId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -417,7 +417,7 @@ ], "entityKey": "KioskModeAppTypeDropDown", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -425,7 +425,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/kioskconfiguration_windows10kiosk.json b/Documentation/ObjectInfo/kioskconfiguration_windows10kiosk.json index b5882df..574967a 100644 --- a/Documentation/ObjectInfo/kioskconfiguration_windows10kiosk.json +++ b/Documentation/ObjectInfo/kioskconfiguration_windows10kiosk.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -49,7 +49,7 @@ ], "entityKey": "profileName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -100,7 +100,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -114,7 +114,7 @@ ], "entityKey": "containedAppId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -131,7 +131,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -147,7 +147,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -161,7 +161,7 @@ ], "entityKey": "uwpApp", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -187,7 +187,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -201,7 +201,7 @@ ], "entityKey": "uwpApp", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -212,7 +212,7 @@ "booleanActions": 0, "defaultValue": "managed", "unconfiguredValue": "managed", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -238,7 +238,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -262,7 +262,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -276,7 +276,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -300,7 +300,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -317,7 +317,7 @@ ], "entityKey": "userName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -331,7 +331,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -340,7 +340,7 @@ ], "entityKey": "userAccountsConfigurationTypeSingle", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -379,7 +379,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -398,7 +398,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -417,7 +417,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -434,7 +434,7 @@ ], "entityKey": "apps", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -451,7 +451,7 @@ "entityKey": "showTaskBar", "booleanActions": 2, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -469,7 +469,7 @@ ], "entityKey": "startMenuLayoutXml", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -495,7 +495,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -519,7 +519,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -533,7 +533,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -558,7 +558,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -577,7 +577,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -594,7 +594,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -619,7 +619,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -638,7 +638,7 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -654,7 +654,7 @@ ], "entityKey": "groupId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -671,7 +671,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -696,7 +696,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -715,7 +715,7 @@ ], "entityKey": "userName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -732,7 +732,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -757,7 +757,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -776,7 +776,7 @@ ], "entityKey": "groupName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -793,7 +793,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -817,7 +817,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -831,7 +831,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -840,7 +840,7 @@ ], "entityKey": "userAccountsConfigurationTypeMulti", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -849,7 +849,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -865,7 +865,7 @@ ], "entityKey": "appConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -883,7 +883,7 @@ "entityKey": "kioskProfiles", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } ] diff --git a/Documentation/ObjectInfo/kioskconfigurationv2_windows10kiosk.json b/Documentation/ObjectInfo/kioskconfigurationv2_windows10kiosk.json index 5e184b7..1e61fde 100644 --- a/Documentation/ObjectInfo/kioskconfigurationv2_windows10kiosk.json +++ b/Documentation/ObjectInfo/kioskconfigurationv2_windows10kiosk.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -27,7 +27,7 @@ ], "entityKey": "kioskProfiles", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -72,7 +72,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -96,7 +96,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -110,7 +110,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -134,7 +134,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -151,7 +151,7 @@ ], "entityKey": "userName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -165,7 +165,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -189,7 +189,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -208,7 +208,7 @@ ], "entityKey": "logonName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -225,7 +225,7 @@ ], "entityKey": "logonType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -241,7 +241,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -257,7 +257,7 @@ ], "entityKey": "groupId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -272,7 +272,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -281,7 +281,7 @@ ], "entityKey": "userAccountsConfigurationTypeSingle", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -315,7 +315,7 @@ ], "entityKey": "classicAppPath", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -330,7 +330,7 @@ ], "entityKey": "edgeNoFirstRun", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -346,7 +346,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -363,7 +363,7 @@ ], "entityKey": "edgeKiosk", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -395,7 +395,7 @@ "booleanActions": 0, "defaultValue": 5, "unconfiguredValue": 5, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -421,7 +421,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -431,7 +431,7 @@ "entityKey": "edgeKioskType", "booleanActions": 0, "defaultValue": "publicBrowsing", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -445,7 +445,7 @@ ], "entityKey": "win32App", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -469,7 +469,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -484,7 +484,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -498,7 +498,7 @@ ], "entityKey": "uwpApp", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -516,7 +516,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -545,7 +545,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -568,7 +568,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -578,7 +578,7 @@ "entityKey": "edgeKioskModeType", "booleanActions": 0, "defaultValue": "defaultMode", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -594,7 +594,7 @@ ], "entityKey": "edgeKioskLegacy", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -618,7 +618,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -633,7 +633,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -647,7 +647,7 @@ ], "entityKey": "uwpApp", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -665,7 +665,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -682,7 +682,7 @@ "entityKey": "kioskBrowserDefaultUrl", "booleanActions": 0, "defaultValue": "http://bing.com", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -709,7 +709,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -736,7 +736,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -763,7 +763,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -780,7 +780,7 @@ ], "entityKey": "kioskBrowserRestartOnIdleTimeInMinutes", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -798,7 +798,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -815,7 +815,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -833,7 +833,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -850,7 +850,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -868,7 +868,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -885,7 +885,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -901,7 +901,7 @@ ], "entityKey": "kioskBrowser", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -926,7 +926,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -940,7 +940,7 @@ ], "entityKey": "containedAppId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -954,7 +954,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -970,7 +970,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -986,7 +986,7 @@ ], "entityKey": "appUserModelId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1000,7 +1000,7 @@ ], "entityKey": "uwpApp", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1009,7 +1009,7 @@ ], "entityKey": "uwpAppType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1032,7 +1032,7 @@ ], "entityKey": "startDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1100,7 +1100,7 @@ "entityKey": "dayofWeek", "booleanActions": 0, "defaultValue": "sunday", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1123,7 +1123,7 @@ "entityKey": "dayofMonth", "booleanActions": 0, "defaultValue": 1, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1133,7 +1133,7 @@ "entityKey": "recurrence", "booleanActions": 0, "defaultValue": "daily", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1148,7 +1148,7 @@ ], "entityKey": "runImmediatelyIfAfterStartDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1162,7 +1162,7 @@ ], "entityKey": "windowsKioskForceUpdateSchedule", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1172,7 +1172,7 @@ "entityKey": "hasForceRestart", "booleanActions": 1, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1222,7 +1222,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1246,7 +1246,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1260,7 +1260,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1287,7 +1287,7 @@ ], "entityKey": "userName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1304,7 +1304,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1328,7 +1328,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1347,7 +1347,7 @@ ], "entityKey": "logonName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1364,7 +1364,7 @@ ], "entityKey": "logonType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1380,7 +1380,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1396,7 +1396,7 @@ ], "entityKey": "groupId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1411,7 +1411,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1435,7 +1435,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1449,7 +1449,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1458,7 +1458,7 @@ ], "entityKey": "userAccountsConfigurationTypeMulti", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1478,7 +1478,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1509,7 +1509,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false } }, @@ -1550,7 +1550,7 @@ ], "entityKey": "appType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1569,7 +1569,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1587,7 +1587,7 @@ ], "entityKey": "desktopApplicationId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1608,7 +1608,7 @@ "booleanActions": 0, "defaultValue": "Configured", "unconfiguredValue": "Configuration Available", - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1626,7 +1626,7 @@ "entityKey": "autoLaunch", "booleanActions": 2, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -1663,7 +1663,7 @@ "entityKey": "startLayoutTileSize", "booleanActions": 0, "defaultValue": "medium", - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1680,7 +1680,7 @@ ], "entityKey": "apps", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1698,7 +1698,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1715,7 +1715,7 @@ "entityKey": "kioskBrowserDefaultUrl", "booleanActions": 0, "defaultValue": "http://bing.com", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1742,7 +1742,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1769,7 +1769,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1796,7 +1796,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1813,7 +1813,7 @@ ], "entityKey": "kioskBrowserRestartOnIdleTimeInMinutes", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -1831,7 +1831,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1848,7 +1848,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -1866,7 +1866,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1883,7 +1883,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -1901,7 +1901,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -1918,7 +1918,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1934,7 +1934,7 @@ ], "entityKey": "kioskBrowser", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -1971,7 +1971,7 @@ "entityKey": "startMenuLayoutXml", "booleanActions": 0, "defaultValue": "", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -1982,7 +1982,7 @@ "booleanActions": 0, "defaultValue": "no", "unconfiguredValue": "no", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2008,7 +2008,7 @@ "entityKey": "showTaskBar", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2034,7 +2034,7 @@ "entityKey": "allowAccessToDownloadsFolder", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2057,7 +2057,7 @@ ], "entityKey": "startDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2125,7 +2125,7 @@ "entityKey": "dayofWeek", "booleanActions": 0, "defaultValue": "sunday", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2148,7 +2148,7 @@ "entityKey": "dayofMonth", "booleanActions": 0, "defaultValue": 1, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2158,7 +2158,7 @@ "entityKey": "recurrence", "booleanActions": 0, "defaultValue": "daily", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2173,7 +2173,7 @@ ], "entityKey": "runImmediatelyIfAfterStartDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2187,7 +2187,7 @@ ], "entityKey": "windowsKioskForceUpdateSchedule", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2197,7 +2197,7 @@ "entityKey": "hasForceRestart", "booleanActions": 1, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2230,7 +2230,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2254,7 +2254,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2268,7 +2268,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2295,7 +2295,7 @@ ], "entityKey": "userName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2312,7 +2312,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2336,7 +2336,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2355,7 +2355,7 @@ ], "entityKey": "logonName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2372,7 +2372,7 @@ ], "entityKey": "logonType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2388,7 +2388,7 @@ ], "entityKey": "userPrincipalName", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2404,7 +2404,7 @@ ], "entityKey": "groupId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2419,7 +2419,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2443,7 +2443,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2457,7 +2457,7 @@ ], "entityKey": "userAccountsConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2466,7 +2466,7 @@ ], "entityKey": "userAccountsConfigurationTypeMulti", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2486,7 +2486,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2517,7 +2517,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false } }, @@ -2558,7 +2558,7 @@ ], "entityKey": "appType", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2577,7 +2577,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2595,7 +2595,7 @@ ], "entityKey": "desktopApplicationId", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2616,7 +2616,7 @@ "booleanActions": 0, "defaultValue": "Configured", "unconfiguredValue": "Configuration Available", - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2634,7 +2634,7 @@ "entityKey": "autoLaunch", "booleanActions": 2, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } }, @@ -2671,7 +2671,7 @@ "entityKey": "startLayoutTileSize", "booleanActions": 0, "defaultValue": "medium", - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2688,7 +2688,7 @@ ], "entityKey": "apps", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2706,7 +2706,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2723,7 +2723,7 @@ "entityKey": "kioskBrowserDefaultUrl", "booleanActions": 0, "defaultValue": "http://bing.com", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2750,7 +2750,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2777,7 +2777,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2804,7 +2804,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2821,7 +2821,7 @@ ], "entityKey": "kioskBrowserRestartOnIdleTimeInMinutes", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -2839,7 +2839,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2856,7 +2856,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -2874,7 +2874,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2891,7 +2891,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -2909,7 +2909,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -2926,7 +2926,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2942,7 +2942,7 @@ ], "entityKey": "kioskBrowser", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -2979,7 +2979,7 @@ "entityKey": "startMenuLayoutXml", "booleanActions": 0, "defaultValue": "", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -2990,7 +2990,7 @@ "booleanActions": 0, "defaultValue": "no", "unconfiguredValue": "no", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -3016,7 +3016,7 @@ "entityKey": "showTaskBar", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -3042,7 +3042,7 @@ "entityKey": "allowAccessToDownloadsFolder", "booleanActions": 0, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -3065,7 +3065,7 @@ ], "entityKey": "startDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -3133,7 +3133,7 @@ "entityKey": "dayofWeek", "booleanActions": 0, "defaultValue": "sunday", - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3156,7 +3156,7 @@ "entityKey": "dayofMonth", "booleanActions": 0, "defaultValue": 1, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3166,7 +3166,7 @@ "entityKey": "recurrence", "booleanActions": 0, "defaultValue": "daily", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -3181,7 +3181,7 @@ ], "entityKey": "runImmediatelyIfAfterStartDateTime", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3195,7 +3195,7 @@ ], "entityKey": "windowsKioskForceUpdateSchedule", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3205,7 +3205,7 @@ "entityKey": "hasForceRestart", "booleanActions": 1, "defaultValue": false, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3214,7 +3214,7 @@ ], "entityKey": "disallowDesktopApps", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3223,7 +3223,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ], @@ -3239,7 +3239,7 @@ ], "entityKey": "appConfiguration", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ] diff --git a/Documentation/ObjectInfo/kioskwebbrowser_windows10kiosk.json b/Documentation/ObjectInfo/kioskwebbrowser_windows10kiosk.json index fcf6231..d129f1a 100644 --- a/Documentation/ObjectInfo/kioskwebbrowser_windows10kiosk.json +++ b/Documentation/ObjectInfo/kioskwebbrowser_windows10kiosk.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -30,7 +30,7 @@ "entityKey": "kioskBrowserDefaultUrl", "booleanActions": 0, "defaultValue": "http://bing.com", - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -57,7 +57,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -84,7 +84,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -111,7 +111,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -128,7 +128,7 @@ ], "entityKey": "kioskBrowserRestartOnIdleTimeInMinutes", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true }, { @@ -146,7 +146,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -163,7 +163,7 @@ ], "entityKey": "kioskBrowserBlockedURLs", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -181,7 +181,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -198,7 +198,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": false }, { @@ -216,7 +216,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } } @@ -233,7 +233,7 @@ ], "entityKey": "kioskBrowserBlockedUrlExceptions", "booleanActions": 0, - "policyType": 79, + "policyType": 80, "enabled": true } ] diff --git a/Documentation/ObjectInfo/lockedscreenexperience_iosgeneral.json b/Documentation/ObjectInfo/lockedscreenexperience_iosgeneral.json index 255fd9e..a0e372c 100644 --- a/Documentation/ObjectInfo/lockedscreenexperience_iosgeneral.json +++ b/Documentation/ObjectInfo/lockedscreenexperience_iosgeneral.json @@ -21,7 +21,7 @@ "entityKey": "lockScreenBlockControlCenter", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -37,7 +37,7 @@ "entityKey": "lockScreenBlockNotificationView", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -53,7 +53,7 @@ "entityKey": "lockScreenBlockTodayView", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -61,7 +61,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -85,7 +85,7 @@ "entityKey": "lockScreenBlockPassbook", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -93,7 +93,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/lockedscreenexperience_windows10general.json b/Documentation/ObjectInfo/lockedscreenexperience_windows10general.json index b8d69f8..dbb1cad 100644 --- a/Documentation/ObjectInfo/lockedscreenexperience_windows10general.json +++ b/Documentation/ObjectInfo/lockedscreenexperience_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "lockScreenBlockActionCenterNotifications", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ ], "entityKey": "personalizationLockScreenImageUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "lockScreenAllowTimeoutConfiguration", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "lockScreenBlockCortana", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "lockScreenBlockToastNotifications", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -100,7 +100,7 @@ "entityKey": "lockScreenTimeoutInSeconds", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -131,7 +131,7 @@ "entityKey": "lockScreenActivateAppsWithVoice", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/lockscreenmessage_iosdevicefeatures.json b/Documentation/ObjectInfo/lockscreenmessage_iosdevicefeatures.json index 24383b0..b36bca1 100644 --- a/Documentation/ObjectInfo/lockscreenmessage_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/lockscreenmessage_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -38,7 +38,7 @@ ], "entityKey": "lockScreenFootnote", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -55,7 +55,7 @@ ], "entityKey": "assetTagTemplate", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -63,7 +63,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/logging_windows10general.json b/Documentation/ObjectInfo/logging_windows10general.json index 9d48d54..2fb4dce 100644 --- a/Documentation/ObjectInfo/logging_windows10general.json +++ b/Documentation/ObjectInfo/logging_windows10general.json @@ -47,7 +47,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -91,7 +91,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -135,7 +135,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -179,7 +179,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -223,7 +223,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -234,7 +234,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -251,7 +251,7 @@ ], "entityKey": "systemTelemetryProxyServer", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/loginitems_macdevicefeatures.json b/Documentation/ObjectInfo/loginitems_macdevicefeatures.json index acb9d28..4c38161 100644 --- a/Documentation/ObjectInfo/loginitems_macdevicefeatures.json +++ b/Documentation/ObjectInfo/loginitems_macdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -40,7 +40,7 @@ ], "entityKey": "path", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } }, @@ -59,7 +59,7 @@ "entityKey": "hide", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } } @@ -76,7 +76,7 @@ ], "entityKey": "autoLaunchItems", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -84,7 +84,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ] diff --git a/Documentation/ObjectInfo/loginwindow_macdevicefeatures.json b/Documentation/ObjectInfo/loginwindow_macdevicefeatures.json index 4563525..f52b49d 100644 --- a/Documentation/ObjectInfo/loginwindow_macdevicefeatures.json +++ b/Documentation/ObjectInfo/loginwindow_macdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -45,7 +45,7 @@ "entityKey": "adminShowHostInfo", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -61,7 +61,7 @@ ], "entityKey": "loginWindowText", "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -84,7 +84,7 @@ "booleanActions": 9, "defaultValue": false, "unconfiguredValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -101,7 +101,7 @@ "booleanActions": 9, "defaultValue": false, "unconfiguredValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -118,7 +118,7 @@ "booleanActions": 9, "defaultValue": false, "unconfiguredValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -135,7 +135,7 @@ "booleanActions": 9, "defaultValue": false, "unconfiguredValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -152,7 +152,7 @@ "booleanActions": 9, "defaultValue": false, "unconfiguredValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -162,7 +162,7 @@ "entityKey": "authorizedUsersListHidden", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -170,7 +170,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -193,7 +193,7 @@ "entityKey": "shutDownDisabled", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -209,7 +209,7 @@ "entityKey": "restartDisabled", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -225,7 +225,7 @@ "entityKey": "sleepDisabled", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -233,7 +233,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -256,7 +256,7 @@ "entityKey": "consoleAccessDisabled", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -264,7 +264,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -288,7 +288,7 @@ "entityKey": "shutDownDisabledWhileLoggedIn", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -304,7 +304,7 @@ "entityKey": "restartDisabledWhileLoggedIn", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -320,7 +320,7 @@ "entityKey": "powerOffDisabledWhileLoggedIn", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -336,7 +336,7 @@ "entityKey": "logOutDisabledWhileLoggedIn", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true }, { @@ -353,7 +353,7 @@ "entityKey": "screenLockDisableImmediate", "booleanActions": 9, "defaultValue": false, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -361,7 +361,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ], @@ -369,7 +369,7 @@ ], "booleanActions": 0, - "policyType": 57, + "policyType": 58, "enabled": true } ] diff --git a/Documentation/ObjectInfo/macdefenderatp_compliancemac.json b/Documentation/ObjectInfo/macdefenderatp_compliancemac.json index d0c1b19..42b2e6b 100644 --- a/Documentation/ObjectInfo/macdefenderatp_compliancemac.json +++ b/Documentation/ObjectInfo/macdefenderatp_compliancemac.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 138, + "category": 139, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 138, + "category": 139, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/maintenance_windows10teamgeneral.json b/Documentation/ObjectInfo/maintenance_windows10teamgeneral.json index e182177..c6715c0 100644 --- a/Documentation/ObjectInfo/maintenance_windows10teamgeneral.json +++ b/Documentation/ObjectInfo/maintenance_windows10teamgeneral.json @@ -141,7 +141,7 @@ ], "entityKey": "maintenanceWindowStartTime", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -185,7 +185,7 @@ ], "entityKey": "maintenanceWindowDurationInHours", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true } ], @@ -195,7 +195,7 @@ "entityKey": "syntheticMaintenanceWindowEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true } } diff --git a/Documentation/ObjectInfo/messaging_windows10general.json b/Documentation/ObjectInfo/messaging_windows10general.json index 631ae9f..063ed41 100644 --- a/Documentation/ObjectInfo/messaging_windows10general.json +++ b/Documentation/ObjectInfo/messaging_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "messagingBlockSync", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "messagingBlockMMS", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "messagingBlockRichCommunicationServices", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/networkboundary_windows10networkboundary.json b/Documentation/ObjectInfo/networkboundary_windows10networkboundary.json index bb58d8d..f846834 100644 --- a/Documentation/ObjectInfo/networkboundary_windows10networkboundary.json +++ b/Documentation/ObjectInfo/networkboundary_windows10networkboundary.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 90, + "policyType": 91, "enabled": true }, { @@ -70,7 +70,7 @@ ], "entityKey": "networkBoundaryType", "booleanActions": 0, - "policyType": 90, + "policyType": 91, "enabled": true } }, @@ -88,7 +88,7 @@ ], "entityKey": "networkBoundaryValue", "booleanActions": 0, - "policyType": 90, + "policyType": 91, "enabled": true } } @@ -105,7 +105,7 @@ ], "entityKey": "networkBoundaryValues", "booleanActions": 0, - "policyType": 90, + "policyType": 91, "enabled": true }, { @@ -122,7 +122,7 @@ "entityKey": "disableProxyServersAutoDetection", "booleanActions": 5, "defaultValue": false, - "policyType": 90, + "policyType": 91, "enabled": true }, { @@ -139,7 +139,7 @@ "entityKey": "disableIPAutoDetection", "booleanActions": 5, "defaultValue": false, - "policyType": 90, + "policyType": 91, "enabled": true } ] diff --git a/Documentation/ObjectInfo/networkproxy_windows10general.json b/Documentation/ObjectInfo/networkproxy_windows10general.json index 647a4c0..4df8e98 100644 --- a/Documentation/ObjectInfo/networkproxy_windows10general.json +++ b/Documentation/ObjectInfo/networkproxy_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "networkProxyDisableAutoDetect", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -35,7 +35,7 @@ ], "entityKey": "networkProxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -45,7 +45,7 @@ "entityKey": "networkProxyUseScriptUrlName", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -65,7 +65,7 @@ ], "entityKey": "networkProxyServerName", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "networkProxyServerPort", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -96,7 +96,7 @@ ], "entityKey": "networkProxyExceptionsTextString", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -113,7 +113,7 @@ "entityKey": "useForLocalAddresses", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -123,7 +123,7 @@ "entityKey": "networkProxyUseManualServerName", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/notifications_iosdevicefeatures.json b/Documentation/ObjectInfo/notifications_iosdevicefeatures.json index 3dd6111..2bc0023 100644 --- a/Documentation/ObjectInfo/notifications_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/notifications_iosdevicefeatures.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -40,7 +40,7 @@ ], "entityKey": "bundleID", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -58,7 +58,7 @@ ], "entityKey": "appName", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -76,7 +76,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -113,7 +113,7 @@ ], "entityKey": "showInNotificationCenter", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -142,7 +142,7 @@ ], "entityKey": "showOnLockScreen", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -173,7 +173,7 @@ "entityKey": "alertType", "booleanActions": 0, "defaultValue": "banner", - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -202,7 +202,7 @@ ], "entityKey": "badgesEnabled", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -231,7 +231,7 @@ ], "entityKey": "soundsEnabled", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -267,7 +267,7 @@ "entityKey": "previewVisibility", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -289,7 +289,7 @@ ], "entityKey": "enabled", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -306,7 +306,7 @@ ], "entityKey": "notificationSettings", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -314,7 +314,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ] diff --git a/Documentation/ObjectInfo/password_androidforworkgeneral.json b/Documentation/ObjectInfo/password_androidforworkgeneral.json index bdab1ad..29c9efc 100644 --- a/Documentation/ObjectInfo/password_androidforworkgeneral.json +++ b/Documentation/ObjectInfo/password_androidforworkgeneral.json @@ -103,7 +103,7 @@ "dataType": 14, "category": 85, "nameResourceKey": "numberOfSignInFailuresBeforeWipeName", - "descriptionResourceKey": "numberOfSignInFailuresBeforeWipeDescription", + "descriptionResourceKey": "workProfileNumberOfSignInFailuresBeforeWipeDescription", "emptyValueResourceKey": "numberOfSignInFailuresBeforeWipeEmptyValueKey", "childSettings": [ diff --git a/Documentation/ObjectInfo/password_iosgeneral.json b/Documentation/ObjectInfo/password_iosgeneral.json index 517307a..e4a3efe 100644 --- a/Documentation/ObjectInfo/password_iosgeneral.json +++ b/Documentation/ObjectInfo/password_iosgeneral.json @@ -21,7 +21,7 @@ "entityKey": "passcodeRequired", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -54,7 +54,7 @@ "entityKey": "passcodeBlockSimple", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -86,7 +86,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -125,7 +125,7 @@ ], "entityKey": "passcodeMinimumCharacterSetCount", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -143,7 +143,7 @@ "entityKey": "passcodeMinimumLength", "booleanActions": 0, "defaultValue": 4, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -166,7 +166,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -176,7 +176,7 @@ "entityKey": "passcodeSignInFailureCountBeforeWipe", "booleanActions": 0, "defaultValue": 4, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -225,7 +225,7 @@ ], "entityKey": "passcodeMinutesOfInactivityBeforeLock", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -284,7 +284,7 @@ ], "entityKey": "passcodeMinutesOfInactivityBeforeScreenTimeout", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -302,7 +302,7 @@ "entityKey": "passcodeExpirationDays", "booleanActions": 0, "defaultValue": 41, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -319,7 +319,7 @@ ], "entityKey": "passcodePreviousPasscodeBlockCount", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -336,7 +336,7 @@ "entityKey": "passcodeBlockFingerprintUnlock", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -344,7 +344,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -375,7 +375,7 @@ "entityKey": "passcodeBlockFingerprintModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -385,7 +385,7 @@ "entityKey": "passcodeBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -401,7 +401,7 @@ "entityKey": "passwordBlockAutoFill", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -418,7 +418,7 @@ "entityKey": "passwordBlockProximityRequests", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -434,7 +434,7 @@ "entityKey": "passwordBlockAirDropSharing", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -451,7 +451,7 @@ "entityKey": "autoFillForceAuthentication", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -459,7 +459,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/password_macgeneral.json b/Documentation/ObjectInfo/password_macgeneral.json index 44d07c6..26c4159 100644 --- a/Documentation/ObjectInfo/password_macgeneral.json +++ b/Documentation/ObjectInfo/password_macgeneral.json @@ -41,7 +41,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "passwordMinimumCharacterSetCount", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -98,7 +98,7 @@ "entityKey": "passwordMinimumLength", "booleanActions": 0, "defaultValue": 4, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -115,7 +115,7 @@ "entityKey": "passwordBlockSimple", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -169,7 +169,7 @@ ], "entityKey": "passwordMinutesOfInactivityBeforeLock", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -228,7 +228,7 @@ ], "entityKey": "passwordMinutesOfInactivityBeforeScreenTimeout", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -246,7 +246,7 @@ "entityKey": "passwordExpirationDays", "booleanActions": 0, "defaultValue": 41, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -264,7 +264,7 @@ "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, "defaultValue": 5, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -287,7 +287,7 @@ "entityKey": "passwordMinutesUntilFailedLoginReset", "booleanActions": 0, "defaultValue": 30, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -297,7 +297,7 @@ "entityKey": "passwordMaximumAttemptCount", "booleanActions": 0, "defaultValue": 11, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -307,7 +307,7 @@ "entityKey": "passwordRequired", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -324,7 +324,7 @@ "entityKey": "passwordBlockModification", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -341,7 +341,7 @@ "entityKey": "passwordBlockFingerprintUnlock", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -357,7 +357,7 @@ "entityKey": "passwordBlockAutoFill", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -373,7 +373,7 @@ "entityKey": "passwordBlockProximityRequests", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -389,7 +389,7 @@ "entityKey": "passwordBlockAirDropSharing", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -397,7 +397,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } diff --git a/Documentation/ObjectInfo/password_windows10general.json b/Documentation/ObjectInfo/password_windows10general.json index 4c6e015..1d4986c 100644 --- a/Documentation/ObjectInfo/password_windows10general.json +++ b/Documentation/ObjectInfo/password_windows10general.json @@ -52,7 +52,7 @@ "entityKey": "passwordMinimumCharacterSetCount", "booleanActions": 0, "defaultValue": 2, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -68,7 +68,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -86,7 +86,7 @@ "entityKey": "passwordMinimumLength", "booleanActions": 0, "defaultValue": 4, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -104,7 +104,7 @@ "entityKey": "passwordSignInFailureCountBeforeFactoryReset", "booleanActions": 0, "defaultValue": 4, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -148,7 +148,7 @@ ], "entityKey": "passwordMinutesOfInactivityBeforeScreenTimeout", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -166,7 +166,7 @@ "entityKey": "passwordExpirationDays", "booleanActions": 0, "defaultValue": 41, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -183,7 +183,7 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -200,7 +200,7 @@ "entityKey": "passwordRequireWhenResumeFromIdleState", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -217,7 +217,7 @@ "entityKey": "passwordBlockSimple", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -227,7 +227,7 @@ "entityKey": "passwordRequired", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -244,7 +244,7 @@ "entityKey": "securityBlockAzureADJoinedDevicesAutoEncryption", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -261,7 +261,7 @@ "entityKey": "cryptographyAllowFipsAlgorithmPolicy", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -278,7 +278,7 @@ "entityKey": "authenticationAllowSecondaryDevice", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -295,7 +295,7 @@ ], "entityKey": "authenticationPreferredAzureADTenantDomainName", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/password_windows8general.json b/Documentation/ObjectInfo/password_windows8general.json index 4b47add..3d6e34f 100644 --- a/Documentation/ObjectInfo/password_windows8general.json +++ b/Documentation/ObjectInfo/password_windows8general.json @@ -46,7 +46,7 @@ "entityKey": "passwordMinimumCharacterSetCount", "booleanActions": 0, "defaultValue": 2, - "policyType": 91, + "policyType": 92, "enabled": true } ], @@ -62,7 +62,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -80,7 +80,7 @@ "entityKey": "passwordMinimumLength", "booleanActions": 0, "defaultValue": 6, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -98,7 +98,7 @@ "entityKey": "passwordSignInFailureCountBeforeFactoryReset", "booleanActions": 0, "defaultValue": 14, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -142,7 +142,7 @@ ], "entityKey": "passwordMinutesOfInactivityBeforeScreenTimeout", "booleanActions": 0, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -160,7 +160,7 @@ "entityKey": "passwordExpirationDays", "booleanActions": 0, "defaultValue": 41, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -177,7 +177,7 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -194,7 +194,7 @@ "entityKey": "passwordBlockPicturePasswordAndPin", "booleanActions": 3, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true }, { @@ -211,7 +211,7 @@ "entityKey": "storageRequireDeviceEncryption", "booleanActions": 1, "defaultValue": false, - "policyType": 91, + "policyType": 92, "enabled": true } ] diff --git a/Documentation/ObjectInfo/password_windowsphonegeneral.json b/Documentation/ObjectInfo/password_windowsphonegeneral.json index 1413cde..69b3a7b 100644 --- a/Documentation/ObjectInfo/password_windowsphonegeneral.json +++ b/Documentation/ObjectInfo/password_windowsphonegeneral.json @@ -57,7 +57,7 @@ "entityKey": "passwordMinimumCharacterSetCount", "booleanActions": 0, "defaultValue": 1, - "policyType": 100, + "policyType": 101, "enabled": true } ], @@ -73,7 +73,7 @@ "booleanActions": 0, "defaultValue": "deviceDefault", "unconfiguredValue": "deviceDefault", - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -91,7 +91,7 @@ "entityKey": "passwordMinimumLength", "booleanActions": 0, "defaultValue": 4, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -108,7 +108,7 @@ "entityKey": "passwordBlockSimple", "booleanActions": 3, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -126,7 +126,7 @@ "entityKey": "passwordSignInFailureCountBeforeFactoryReset", "booleanActions": 0, "defaultValue": 4, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -170,7 +170,7 @@ ], "entityKey": "passwordMinutesOfInactivityBeforeScreenTimeout", "booleanActions": 0, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -188,7 +188,7 @@ "entityKey": "passwordExpirationDays", "booleanActions": 0, "defaultValue": 41, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -206,7 +206,7 @@ "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, "defaultValue": 5, - "policyType": 100, + "policyType": 101, "enabled": true } ], @@ -216,7 +216,7 @@ "entityKey": "passwordRequired", "booleanActions": 1, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true }, { @@ -233,7 +233,7 @@ "entityKey": "storageRequireEncryption", "booleanActions": 1, "defaultValue": false, - "policyType": 100, + "policyType": 101, "enabled": true } ] diff --git a/Documentation/ObjectInfo/personalization_windows10general.json b/Documentation/ObjectInfo/personalization_windows10general.json index b2740a2..b79ef36 100644 --- a/Documentation/ObjectInfo/personalization_windows10general.json +++ b/Documentation/ObjectInfo/personalization_windows10general.json @@ -13,7 +13,7 @@ ], "entityKey": "personalizationDesktopImageUrl", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } diff --git a/Documentation/ObjectInfo/pkcs_iospkcs.json b/Documentation/ObjectInfo/pkcs_iospkcs.json index 32e5dfa..3615d35 100644 --- a/Documentation/ObjectInfo/pkcs_iospkcs.json +++ b/Documentation/ObjectInfo/pkcs_iospkcs.json @@ -13,7 +13,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -48,7 +48,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -127,7 +127,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -144,7 +144,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -187,7 +187,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } }, @@ -205,7 +205,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } } @@ -222,7 +222,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } ], @@ -244,7 +244,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -261,7 +261,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 47, + "policyType": 48, "enabled": true }, { @@ -304,7 +304,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } }, @@ -322,7 +322,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } } @@ -339,7 +339,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 47, + "policyType": 48, "enabled": true } ], @@ -349,7 +349,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 47, + "policyType": 48, "enabled": true } ] diff --git a/Documentation/ObjectInfo/pkcs_macospkcs.json b/Documentation/ObjectInfo/pkcs_macospkcs.json index 4d08fea..767f3f3 100644 --- a/Documentation/ObjectInfo/pkcs_macospkcs.json +++ b/Documentation/ObjectInfo/pkcs_macospkcs.json @@ -13,7 +13,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -48,7 +48,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -65,7 +65,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -127,7 +127,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -144,7 +144,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -187,7 +187,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } }, @@ -205,7 +205,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } } @@ -222,7 +222,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } ], @@ -244,7 +244,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -261,7 +261,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -304,7 +304,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } }, @@ -322,7 +322,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } } @@ -339,7 +339,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 63, + "policyType": 64, "enabled": true } ], @@ -349,7 +349,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 63, + "policyType": 64, "enabled": true }, { @@ -366,7 +366,7 @@ ], "entityKey": "allowAllAppsAccess", "booleanActions": 2, - "policyType": 63, + "policyType": 64, "enabled": true } ] diff --git a/Documentation/ObjectInfo/pkcs_windows10pkcs.json b/Documentation/ObjectInfo/pkcs_windows10pkcs.json index 7b7634a..3385e29 100644 --- a/Documentation/ObjectInfo/pkcs_windows10pkcs.json +++ b/Documentation/ObjectInfo/pkcs_windows10pkcs.json @@ -13,7 +13,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -48,7 +48,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -87,7 +87,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -104,7 +104,7 @@ "entityKey": "certificationAuthority", "booleanActions": 0, "defaultValue": "", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -121,7 +121,7 @@ "entityKey": "certificationAuthorityName", "booleanActions": 0, "defaultValue": "", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -138,7 +138,7 @@ "entityKey": "certificateTemplateName", "booleanActions": 0, "defaultValue": "", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -166,7 +166,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -183,7 +183,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -226,7 +226,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } }, @@ -244,7 +244,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } } @@ -261,7 +261,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } ], @@ -283,7 +283,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -300,7 +300,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -343,7 +343,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } }, @@ -361,7 +361,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } } @@ -378,7 +378,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } ], @@ -388,7 +388,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 81, + "policyType": 82, "enabled": true }, { @@ -407,7 +407,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } }, @@ -425,7 +425,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } } @@ -442,7 +442,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 81, + "policyType": 82, "enabled": true } ] diff --git a/Documentation/ObjectInfo/policyoverride_windows10policyoverride.json b/Documentation/ObjectInfo/policyoverride_windows10policyoverride.json index 1c89263..97505e1 100644 --- a/Documentation/ObjectInfo/policyoverride_windows10policyoverride.json +++ b/Documentation/ObjectInfo/policyoverride_windows10policyoverride.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 80, + "policyType": 81, "enabled": true }, { @@ -27,7 +27,7 @@ ], "booleanActions": 0, - "policyType": 80, + "policyType": 81, "enabled": true } ] diff --git a/Documentation/ObjectInfo/powersettings_windows10general.json b/Documentation/ObjectInfo/powersettings_windows10general.json index e5f5143..5c2ae42 100644 --- a/Documentation/ObjectInfo/powersettings_windows10general.json +++ b/Documentation/ObjectInfo/powersettings_windows10general.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "energySaverOnBatteryThresholdPercentage", "booleanActions": 0, "defaultValue": 70, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -72,7 +72,7 @@ "entityKey": "powerLidCloseActionOnBattery", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -113,7 +113,7 @@ "entityKey": "powerButtonActionOnBattery", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -154,7 +154,7 @@ "entityKey": "powerSleepButtonActionOnBattery", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -185,7 +185,7 @@ "entityKey": "powerHybridSleepOnBattery", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -201,7 +201,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -219,7 +219,7 @@ "entityKey": "energySaverPluggedInThresholdPercentage", "booleanActions": 0, "defaultValue": 70, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -260,7 +260,7 @@ "entityKey": "powerLidCloseActionPluggedIn", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -301,7 +301,7 @@ "entityKey": "powerButtonActionPluggedIn", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -342,7 +342,7 @@ "entityKey": "powerSleepButtonActionPluggedIn", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -373,7 +373,7 @@ "entityKey": "powerHybridSleepPluggedIn", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/printer_windows10general.json b/Documentation/ObjectInfo/printer_windows10general.json index c6bb604..387e640 100644 --- a/Documentation/ObjectInfo/printer_windows10general.json +++ b/Documentation/ObjectInfo/printer_windows10general.json @@ -15,7 +15,7 @@ ], "entityKey": "printersColumns", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -32,7 +32,7 @@ ], "entityKey": "printerNames", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -49,7 +49,7 @@ ], "entityKey": "printerDefaultName", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -66,7 +66,7 @@ "entityKey": "printerBlockAddition", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/privacy_windows10general.json b/Documentation/ObjectInfo/privacy_windows10general.json index 95e09f7..470c56d 100644 --- a/Documentation/ObjectInfo/privacy_windows10general.json +++ b/Documentation/ObjectInfo/privacy_windows10general.json @@ -24,7 +24,7 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -41,7 +41,7 @@ "entityKey": "privacyBlockInputPersonalization", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -58,7 +58,7 @@ "entityKey": "privacyAutoAcceptPairingAndConsentPrompts", "booleanActions": 0, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -75,7 +75,7 @@ "entityKey": "privacyBlockPublishUserActivities", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -92,7 +92,7 @@ "entityKey": "privacyBlockActivityFeed", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -108,7 +108,7 @@ ], "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -137,7 +137,7 @@ ], "entityKey": "accountInfo", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -166,7 +166,7 @@ ], "entityKey": "appsRunInBackground", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -195,7 +195,7 @@ ], "entityKey": "calendar", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -224,7 +224,7 @@ ], "entityKey": "callHistory", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -253,7 +253,7 @@ ], "entityKey": "camera", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -282,7 +282,7 @@ ], "entityKey": "contacts", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -311,7 +311,7 @@ ], "entityKey": "email", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -340,7 +340,7 @@ ], "entityKey": "location", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -369,7 +369,7 @@ ], "entityKey": "messaging", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -398,7 +398,7 @@ ], "entityKey": "microphone", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -427,7 +427,7 @@ ], "entityKey": "motion", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -456,7 +456,7 @@ ], "entityKey": "notifications", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -485,7 +485,7 @@ ], "entityKey": "phone", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -514,7 +514,7 @@ ], "entityKey": "radios", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -543,7 +543,7 @@ ], "entityKey": "tasks", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -572,7 +572,7 @@ ], "entityKey": "trustedDevices", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -601,7 +601,7 @@ ], "entityKey": "diagnosticsInfo", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -630,7 +630,7 @@ ], "entityKey": "syncWithDevices", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/privacyperapp_windows10general.json b/Documentation/ObjectInfo/privacyperapp_windows10general.json index 489f74d..689610b 100644 --- a/Documentation/ObjectInfo/privacyperapp_windows10general.json +++ b/Documentation/ObjectInfo/privacyperapp_windows10general.json @@ -16,7 +16,7 @@ ], "entityKey": "appPackageName", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } }, @@ -34,7 +34,7 @@ ], "entityKey": "appName", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } }, @@ -76,7 +76,7 @@ ], "entityKey": "accountInfo", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -110,7 +110,7 @@ ], "entityKey": "appsRunInBackground", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -144,7 +144,7 @@ ], "entityKey": "calendar", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -178,7 +178,7 @@ ], "entityKey": "callHistory", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -212,7 +212,7 @@ ], "entityKey": "camera", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -246,7 +246,7 @@ ], "entityKey": "contacts", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -280,7 +280,7 @@ ], "entityKey": "email", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -314,7 +314,7 @@ ], "entityKey": "location", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -348,7 +348,7 @@ ], "entityKey": "messaging", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -382,7 +382,7 @@ ], "entityKey": "microphone", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -416,7 +416,7 @@ ], "entityKey": "motion", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -450,7 +450,7 @@ ], "entityKey": "notifications", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -484,7 +484,7 @@ ], "entityKey": "phone", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -518,7 +518,7 @@ ], "entityKey": "radios", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -552,7 +552,7 @@ ], "entityKey": "tasks", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -586,7 +586,7 @@ ], "entityKey": "trustedDevices", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -620,7 +620,7 @@ ], "entityKey": "diagnosticsInfo", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -654,7 +654,7 @@ ], "entityKey": "syncWithDevices", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -665,7 +665,7 @@ "booleanActions": 0, "defaultValue": true, "unconfiguredValue": true, - "policyType": 78, + "policyType": 79, "enabled": true } } @@ -682,7 +682,7 @@ ], "entityKey": "perAppPrivacy", "booleanActions": 0, - "policyType": 78, + "policyType": 79, "enabled": true } } diff --git a/Documentation/ObjectInfo/privacypreferences_macgeneral.json b/Documentation/ObjectInfo/privacypreferences_macgeneral.json index 46adee2..0258368 100644 --- a/Documentation/ObjectInfo/privacypreferences_macgeneral.json +++ b/Documentation/ObjectInfo/privacypreferences_macgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true }, { @@ -41,7 +41,7 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -77,7 +77,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -100,7 +100,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -109,7 +109,7 @@ ], "entityKey": "identifierType", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -128,7 +128,7 @@ ], "entityKey": "codeRequirement", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -147,7 +147,7 @@ "entityKey": "staticCodeValidation", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -165,7 +165,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -183,7 +183,7 @@ "entityKey": "blockCamera", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -201,7 +201,7 @@ "entityKey": "blockMicrophone", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -220,7 +220,7 @@ "entityKey": "blockScreenCapture", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -239,7 +239,7 @@ "entityKey": "blockListenEvent", "booleanActions": 9, "defaultValue": false, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -272,7 +272,7 @@ "entityKey": "speechRecognition", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -305,7 +305,7 @@ "entityKey": "accessibility", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -337,7 +337,7 @@ "entityKey": "addressBook", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -369,7 +369,7 @@ "entityKey": "calendar", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -401,7 +401,7 @@ "entityKey": "reminders", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -434,7 +434,7 @@ "entityKey": "photos", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -467,7 +467,7 @@ "entityKey": "mediaLibrary", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -500,7 +500,7 @@ "entityKey": "fileProviderPresence", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -533,7 +533,7 @@ "entityKey": "systemPolicyAllFiles", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -565,7 +565,7 @@ "entityKey": "systemPolicySystemAdminFiles", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -598,7 +598,7 @@ "entityKey": "systemPolicyDesktopFolder", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -631,7 +631,7 @@ "entityKey": "systemPolicyDocumentsFolder", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -664,7 +664,7 @@ "entityKey": "systemPolicyDownloadsFolder", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -697,7 +697,7 @@ "entityKey": "systemPolicyNetworkVolumes", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -730,7 +730,7 @@ "entityKey": "systemPolicyRemovableVolumes", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -763,7 +763,7 @@ "entityKey": "postEvent", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -802,7 +802,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -825,7 +825,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -834,7 +834,7 @@ ], "entityKey": "identifierType", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -853,7 +853,7 @@ ], "entityKey": "codeRequirement", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } }, @@ -883,7 +883,7 @@ ], "entityKey": "allowed", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } @@ -900,7 +900,7 @@ ], "entityKey": "appleEventsAllowedReceivers", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } } @@ -917,7 +917,7 @@ ], "entityKey": "privacyAccessControls", "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ], @@ -925,7 +925,7 @@ ], "booleanActions": 0, - "policyType": 60, + "policyType": 61, "enabled": true } ] diff --git a/Documentation/ObjectInfo/projection_windows10general.json b/Documentation/ObjectInfo/projection_windows10general.json index 1070d51..d6ebbfa 100644 --- a/Documentation/ObjectInfo/projection_windows10general.json +++ b/Documentation/ObjectInfo/projection_windows10general.json @@ -14,7 +14,7 @@ "entityKey": "wirelessDisplayBlockUserInputFromReceiver", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "wirelessDisplayBlockProjectionToThisDevice", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -48,7 +48,7 @@ "entityKey": "wirelessDisplayRequirePinForPairing", "booleanActions": 1, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_iosscep.json b/Documentation/ObjectInfo/scepproperties_iosscep.json index 8d4e085..97aa3ce 100644 --- a/Documentation/ObjectInfo/scepproperties_iosscep.json +++ b/Documentation/ObjectInfo/scepproperties_iosscep.json @@ -25,7 +25,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -42,7 +42,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } }, @@ -98,7 +98,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } } @@ -115,7 +115,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } ], @@ -137,7 +137,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -154,7 +154,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } }, @@ -210,7 +210,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } } @@ -227,7 +227,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } ], @@ -237,7 +237,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -272,7 +272,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -316,7 +316,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 49, + "policyType": 50, "enabled": true } ], @@ -325,7 +325,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": false }, { @@ -384,7 +384,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 49, + "policyType": 50, "enabled": false } ], @@ -393,7 +393,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": false }, { @@ -452,7 +452,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 49, + "policyType": 50, "enabled": true } ], @@ -461,7 +461,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -487,7 +487,7 @@ ], "entityKey": "subjectAlternativeNameType", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -512,7 +512,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -549,7 +549,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -568,7 +568,7 @@ "entityKey": "rootCertificate", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 49, + "policyType": 50, "enabled": true } ], @@ -584,7 +584,7 @@ ], "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -603,7 +603,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } }, @@ -621,7 +621,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } } @@ -638,7 +638,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -654,7 +654,7 @@ ], "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -670,7 +670,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true }, { @@ -690,7 +690,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } } @@ -707,7 +707,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 49, + "policyType": 50, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_macscep.json b/Documentation/ObjectInfo/scepproperties_macscep.json index 682a905..35ddd92 100644 --- a/Documentation/ObjectInfo/scepproperties_macscep.json +++ b/Documentation/ObjectInfo/scepproperties_macscep.json @@ -25,7 +25,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -42,7 +42,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } }, @@ -98,7 +98,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } } @@ -115,7 +115,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } ], @@ -137,7 +137,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -154,7 +154,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } }, @@ -210,7 +210,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } } @@ -227,7 +227,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } ], @@ -237,7 +237,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -272,7 +272,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -316,7 +316,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 62, + "policyType": 63, "enabled": true } ], @@ -325,7 +325,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": false }, { @@ -384,7 +384,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 62, + "policyType": 63, "enabled": false } ], @@ -393,7 +393,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": false }, { @@ -452,7 +452,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 62, + "policyType": 63, "enabled": true } ], @@ -461,7 +461,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -487,7 +487,7 @@ ], "entityKey": "subjectAlternativeNameType", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -512,7 +512,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -549,7 +549,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -568,7 +568,7 @@ "entityKey": "rootCertificate", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 62, + "policyType": 63, "enabled": true } ], @@ -584,7 +584,7 @@ ], "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -603,7 +603,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } }, @@ -621,7 +621,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } } @@ -638,7 +638,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -654,7 +654,7 @@ ], "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -670,7 +670,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true }, { @@ -690,7 +690,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } } @@ -707,7 +707,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 62, + "policyType": 63, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_windows10scep.json b/Documentation/ObjectInfo/scepproperties_windows10scep.json index 38bb5cf..99d233b 100644 --- a/Documentation/ObjectInfo/scepproperties_windows10scep.json +++ b/Documentation/ObjectInfo/scepproperties_windows10scep.json @@ -25,7 +25,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -42,7 +42,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } }, @@ -98,7 +98,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } } @@ -115,7 +115,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } ], @@ -137,7 +137,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -154,7 +154,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } }, @@ -210,7 +210,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } } @@ -227,7 +227,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } ], @@ -237,7 +237,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -272,7 +272,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -311,7 +311,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -370,7 +370,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 83, + "policyType": 84, "enabled": true } ], @@ -379,7 +379,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -405,7 +405,7 @@ ], "entityKey": "subjectAlternativeNameType", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -430,7 +430,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -461,7 +461,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -486,7 +486,7 @@ ], "entityKey": "hashAlgorithm", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -505,7 +505,7 @@ "entityKey": "rootCertificate", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 83, + "policyType": 84, "enabled": true } ], @@ -521,7 +521,7 @@ ], "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -540,7 +540,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } }, @@ -558,7 +558,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } } @@ -575,7 +575,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -591,7 +591,7 @@ ], "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -607,7 +607,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true }, { @@ -627,7 +627,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } } @@ -644,7 +644,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 83, + "policyType": 84, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_windows10xscep.json b/Documentation/ObjectInfo/scepproperties_windows10xscep.json index db7ce0e..b6647c7 100644 --- a/Documentation/ObjectInfo/scepproperties_windows10xscep.json +++ b/Documentation/ObjectInfo/scepproperties_windows10xscep.json @@ -14,7 +14,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserPrincipalName}}", - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -37,7 +37,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } }, @@ -55,7 +55,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } } @@ -72,7 +72,7 @@ ], "entityKey": "subjectAlternativeNameFormats", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": false }, { @@ -107,7 +107,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -146,7 +146,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -171,7 +171,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -202,7 +202,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -227,7 +227,7 @@ ], "entityKey": "hashAlgorithm", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -246,7 +246,7 @@ "entityKey": "rootCertificateId", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 111, + "policyType": 112, "enabled": true } ], @@ -262,7 +262,7 @@ ], "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -281,7 +281,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } }, @@ -299,7 +299,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } } @@ -316,7 +316,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -332,7 +332,7 @@ ], "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -348,7 +348,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true }, { @@ -368,7 +368,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } } @@ -385,7 +385,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 111, + "policyType": 112, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_windows8scep.json b/Documentation/ObjectInfo/scepproperties_windows8scep.json index 84fcd57..6e0c003 100644 --- a/Documentation/ObjectInfo/scepproperties_windows8scep.json +++ b/Documentation/ObjectInfo/scepproperties_windows8scep.json @@ -25,7 +25,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -42,7 +42,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -80,7 +80,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } }, @@ -98,7 +98,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } } @@ -115,7 +115,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } ], @@ -137,7 +137,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -154,7 +154,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{AAD_Device_ID}}", - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "sanType", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } }, @@ -210,7 +210,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } } @@ -227,7 +227,7 @@ ], "entityKey": "customSubjectAlternativeNames", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } ], @@ -237,7 +237,7 @@ "entityKey": "certificateStore", "booleanActions": 0, "defaultValue": "user", - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -272,7 +272,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -311,7 +311,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -370,7 +370,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 92, + "policyType": 93, "enabled": true } ], @@ -379,7 +379,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -405,7 +405,7 @@ ], "entityKey": "subjectAlternativeNameType", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -430,7 +430,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -461,7 +461,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -486,7 +486,7 @@ ], "entityKey": "hashAlgorithm", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -505,7 +505,7 @@ "entityKey": "rootCertificate", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 92, + "policyType": 93, "enabled": true } ], @@ -521,7 +521,7 @@ ], "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -540,7 +540,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } }, @@ -558,7 +558,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } } @@ -575,7 +575,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -591,7 +591,7 @@ ], "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -607,7 +607,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true }, { @@ -627,7 +627,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } } @@ -644,7 +644,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 92, + "policyType": 93, "enabled": true } ] diff --git a/Documentation/ObjectInfo/scepproperties_windowsphonescep.json b/Documentation/ObjectInfo/scepproperties_windowsphonescep.json index 35da8e3..54cbe71 100644 --- a/Documentation/ObjectInfo/scepproperties_windowsphonescep.json +++ b/Documentation/ObjectInfo/scepproperties_windowsphonescep.json @@ -32,7 +32,7 @@ ], "entityKey": "certificateValidityPeriodValue", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -71,7 +71,7 @@ ], "entityKey": "keyStorageProvider", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -130,7 +130,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 102, + "policyType": 103, "enabled": false }, { @@ -147,7 +147,7 @@ "entityKey": "subjectNameFormatString", "booleanActions": 0, "defaultValue": "CN={{UserName}},E={{EmailAddress}}", - "policyType": 102, + "policyType": 103, "enabled": true } ], @@ -156,7 +156,7 @@ ], "entityKey": "subjectNameFormat", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -182,7 +182,7 @@ ], "entityKey": "subjectAlternativeNameType", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -207,7 +207,7 @@ ], "entityKey": "keyUsage", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -238,7 +238,7 @@ ], "entityKey": "keySize", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -263,7 +263,7 @@ ], "entityKey": "hashAlgorithm", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -282,7 +282,7 @@ "entityKey": "rootCertificate", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 102, + "policyType": 103, "enabled": true } ], @@ -298,7 +298,7 @@ ], "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -317,7 +317,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true } }, @@ -335,7 +335,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true } } @@ -352,7 +352,7 @@ ], "entityKey": "extendedKeyUsages", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -368,7 +368,7 @@ ], "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -384,7 +384,7 @@ ], "entityKey": "renewalThresholdPercentage", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true }, { @@ -404,7 +404,7 @@ ], "entityKey": "sCEPPolicyServerURLName", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true } } @@ -421,7 +421,7 @@ ], "entityKey": "scepServerUrls", "booleanActions": 0, - "policyType": 102, + "policyType": 103, "enabled": true } ] diff --git a/Documentation/ObjectInfo/search_windows10general.json b/Documentation/ObjectInfo/search_windows10general.json index b78aeeb..d7c9738 100644 --- a/Documentation/ObjectInfo/search_windows10general.json +++ b/Documentation/ObjectInfo/search_windows10general.json @@ -29,7 +29,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -47,7 +47,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -65,7 +65,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -83,7 +83,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -101,7 +101,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -119,7 +119,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -137,7 +137,7 @@ "booleanActions": 3, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -155,7 +155,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -173,7 +173,7 @@ "booleanActions": 2, "defaultValue": false, "unconfiguredValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/session_windows10teamgeneral.json b/Documentation/ObjectInfo/session_windows10teamgeneral.json index 149872c..5a6177f 100644 --- a/Documentation/ObjectInfo/session_windows10teamgeneral.json +++ b/Documentation/ObjectInfo/session_windows10teamgeneral.json @@ -14,7 +14,7 @@ ], "entityKey": "settingsDefaultVolume", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -88,7 +88,7 @@ ], "entityKey": "settingsScreenTimeoutInMinutes", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -162,7 +162,7 @@ ], "entityKey": "settingsSessionTimeoutInMinutes", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -236,7 +236,7 @@ ], "entityKey": "settingsSleepTimeoutInMinutes", "booleanActions": 0, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -253,7 +253,7 @@ "entityKey": "settingsBlockSessionResume", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true } ] diff --git a/Documentation/ObjectInfo/shareddevice_iosgeneral.json b/Documentation/ObjectInfo/shareddevice_iosgeneral.json index 371b775..2e59b65 100644 --- a/Documentation/ObjectInfo/shareddevice_iosgeneral.json +++ b/Documentation/ObjectInfo/shareddevice_iosgeneral.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -37,7 +37,7 @@ ], "entityKey": "sharedDeviceBlockTemporarySessions", "booleanActions": 9, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -45,7 +45,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/sharedpcaccountmanager_windows10sharedpc.json b/Documentation/ObjectInfo/sharedpcaccountmanager_windows10sharedpc.json index 0d81a30..b992525 100644 --- a/Documentation/ObjectInfo/sharedpcaccountmanager_windows10sharedpc.json +++ b/Documentation/ObjectInfo/sharedpcaccountmanager_windows10sharedpc.json @@ -12,7 +12,7 @@ ], "entityKey": "enableProfileManager", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -27,7 +27,7 @@ ], "entityKey": "accountManagementDeletionPolicy", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -42,7 +42,7 @@ ], "entityKey": "storageCapacityStartDeletion", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -57,7 +57,7 @@ ], "entityKey": "storageCapacityStopDeletion", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -72,7 +72,7 @@ ], "entityKey": "profileInactivityThreshold", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -87,7 +87,7 @@ ], "entityKey": "allowedAccountsCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -102,7 +102,7 @@ ], "entityKey": "setSignInOnResumeCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -117,7 +117,7 @@ ], "entityKey": "maintenanceStartTimeCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -132,7 +132,7 @@ ], "entityKey": "restrictLocalStorageCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -147,7 +147,7 @@ ], "entityKey": "setAccountManagerCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -162,7 +162,7 @@ ], "entityKey": "setPowerPoliciesCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -177,7 +177,7 @@ ], "entityKey": "scheduleAccountDeletionCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "cacheAccountsAboveDiskFreePercentageCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -207,7 +207,7 @@ ], "entityKey": "removeAccountsBelowDiskFreePercentageCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -222,7 +222,7 @@ ], "entityKey": "inactiveThresholdDaysCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -237,7 +237,7 @@ ], "entityKey": "SetEduPoliciesCustom", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -253,7 +253,7 @@ ], "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -269,7 +269,7 @@ ], "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -285,7 +285,7 @@ ], "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -302,7 +302,7 @@ "entityKey": "enabled", "booleanActions": 2, "defaultValue": false, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -339,7 +339,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -374,7 +374,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -404,7 +404,7 @@ ], "entityKey": "removeAccountsBelowDiskFreePercentage", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -421,7 +421,7 @@ ], "entityKey": "cacheAccountsAboveDiskFreePercentage", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true } ], @@ -445,7 +445,7 @@ ], "entityKey": "removeAccountsBelowDiskFreePercentage", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -462,7 +462,7 @@ ], "entityKey": "cacheAccountsAboveDiskFreePercentage", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -479,7 +479,7 @@ ], "entityKey": "inactiveThresholdDays", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true } ], @@ -495,7 +495,7 @@ "booleanActions": 0, "defaultValue": "diskSpaceThreshold", "unconfiguredValue": "diskSpaceThreshold", - "policyType": 85, + "policyType": 86, "enabled": true } ], @@ -509,7 +509,7 @@ ], "entityKey": "accountManagerPolicy", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true } ], @@ -525,7 +525,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -557,7 +557,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -589,7 +589,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -606,7 +606,7 @@ ], "entityKey": "idleTimeBeforeSleepInSeconds", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -638,7 +638,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -655,7 +655,7 @@ ], "entityKey": "setMaintenanceStartTime", "booleanActions": 0, - "policyType": 85, + "policyType": 86, "enabled": true }, { @@ -687,7 +687,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 85, + "policyType": 86, "enabled": true } ] diff --git a/Documentation/ObjectInfo/singlesignon_iosdevicefeatures.json b/Documentation/ObjectInfo/singlesignon_iosdevicefeatures.json index 9d20233..a0c6473 100644 --- a/Documentation/ObjectInfo/singlesignon_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/singlesignon_iosdevicefeatures.json @@ -27,7 +27,7 @@ ], "entityKey": "kerberosRealm", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -46,7 +46,7 @@ ], "entityKey": "urlsColumn", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -63,7 +63,7 @@ ], "entityKey": "allowedUrls", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -82,7 +82,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, @@ -100,7 +100,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } @@ -117,7 +117,7 @@ ], "entityKey": "allowedAppsList", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -135,7 +135,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -152,7 +152,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -187,7 +187,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -195,7 +195,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } diff --git a/Documentation/ObjectInfo/smartscreen_windows10endpointprotection.json b/Documentation/ObjectInfo/smartscreen_windows10endpointprotection.json index e91027a..4bbb8a8 100644 --- a/Documentation/ObjectInfo/smartscreen_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/smartscreen_windows10endpointprotection.json @@ -14,7 +14,7 @@ "entityKey": "smartScreenEnableInShell", "booleanActions": 2, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "smartScreenBlockOverrideForFiles", "booleanActions": 3, "defaultValue": false, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/smode_windowseditionupgrade.json b/Documentation/ObjectInfo/smode_windowseditionupgrade.json index 6a0a9a2..5bda92b 100644 --- a/Documentation/ObjectInfo/smode_windowseditionupgrade.json +++ b/Documentation/ObjectInfo/smode_windowseditionupgrade.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 96, + "policyType": 97, "enabled": true }, { @@ -60,7 +60,7 @@ "booleanActions": 0, "defaultValue": "noRestriction", "unconfiguredValue": "noRestriction", - "policyType": 96, + "policyType": 97, "enabled": true } ] diff --git a/Documentation/ObjectInfo/softwareupdates_iosupdate.json b/Documentation/ObjectInfo/softwareupdates_iosupdate.json index 18685e4..d9889e3 100644 --- a/Documentation/ObjectInfo/softwareupdates_iosupdate.json +++ b/Documentation/ObjectInfo/softwareupdates_iosupdate.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -43,7 +43,7 @@ ], "booleanActions": 0, - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -93,7 +93,7 @@ ], "entityKey": "scheduledInstallDaysDropdownValue", "booleanActions": 0, - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -299,7 +299,7 @@ "entityKey": "utcTimeOffsetInMinutes", "booleanActions": 0, "defaultValue": 0, - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -435,7 +435,7 @@ "entityKey": "activeHoursStart", "booleanActions": 0, "defaultValue": "08:00:00.0000000", - "policyType": 51, + "policyType": 52, "enabled": true }, { @@ -571,7 +571,7 @@ "entityKey": "activeHoursEnd", "booleanActions": 0, "defaultValue": "17:00:00.0000000", - "policyType": 51, + "policyType": 52, "enabled": true } ] diff --git a/Documentation/ObjectInfo/softwareupdates_macossoftwareupdate.json b/Documentation/ObjectInfo/softwareupdates_macossoftwareupdate.json index be955af..6439f78 100644 --- a/Documentation/ObjectInfo/softwareupdates_macossoftwareupdate.json +++ b/Documentation/ObjectInfo/softwareupdates_macossoftwareupdate.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -29,7 +29,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -45,7 +45,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -61,7 +61,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -86,7 +86,7 @@ "entityKey": "criticalUpdateBehavior", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -111,7 +111,7 @@ "entityKey": "firmwareUpdateBehavior", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -136,7 +136,7 @@ "entityKey": "configDataUpdateBehavior", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -161,7 +161,7 @@ "entityKey": "allOtherUpdateBehavior", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -177,7 +177,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -193,7 +193,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -225,7 +225,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -431,7 +431,7 @@ "entityKey": "updateTimeWindowUtcOffsetInMinutes", "booleanActions": 0, "defaultValue": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -483,7 +483,7 @@ ], "entityKey": "startDay", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -619,7 +619,7 @@ ], "entityKey": "startTime", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -670,7 +670,7 @@ ], "entityKey": "endDay", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -807,7 +807,7 @@ ], "entityKey": "endTime", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } } @@ -824,7 +824,7 @@ ], "entityKey": "customUpdateTimeWindows", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } ], @@ -845,7 +845,7 @@ ], "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -1051,7 +1051,7 @@ "entityKey": "updateTimeWindowUtcOffsetInMinutes", "booleanActions": 0, "defaultValue": 0, - "policyType": 68, + "policyType": 69, "enabled": false }, { @@ -1103,7 +1103,7 @@ ], "entityKey": "startDay", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -1239,7 +1239,7 @@ ], "entityKey": "startTime", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -1290,7 +1290,7 @@ ], "entityKey": "endDay", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } }, @@ -1427,7 +1427,7 @@ ], "entityKey": "endTime", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } } @@ -1444,7 +1444,7 @@ ], "entityKey": "customUpdateTimeWindows", "booleanActions": 0, - "policyType": 68, + "policyType": 69, "enabled": false } ], @@ -1455,7 +1455,7 @@ "booleanActions": 0, "defaultValue": "alwaysUpdate", "unconfiguredValue": "alwaysUpdate", - "policyType": 68, + "policyType": 69, "enabled": false } ] diff --git a/Documentation/ObjectInfo/softwareupdates_windows10desktopsoftwareupdate.json b/Documentation/ObjectInfo/softwareupdates_windows10desktopsoftwareupdate.json index 76b2d6e..80011d9 100644 --- a/Documentation/ObjectInfo/softwareupdates_windows10desktopsoftwareupdate.json +++ b/Documentation/ObjectInfo/softwareupdates_windows10desktopsoftwareupdate.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -45,7 +45,7 @@ ], "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -70,7 +70,7 @@ "entityKey": "businessReadyUpdatesOnly", "booleanActions": 0, "defaultValue": "businessReadyOnly", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -96,7 +96,7 @@ "entityKey": "microsoftUpdateServiceAllowed", "booleanActions": 0, "defaultValue": true, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -122,7 +122,7 @@ "entityKey": "driversExcluded", "booleanActions": 0, "defaultValue": false, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -139,7 +139,7 @@ "entityKey": "qualityUpdatesDeferralPeriodInDays", "booleanActions": 0, "defaultValue": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -156,7 +156,7 @@ "entityKey": "featureUpdatesDeferralPeriodInDays", "booleanActions": 0, "defaultValue": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -173,7 +173,7 @@ "entityKey": "featureUpdatesRollbackWindowInDays", "booleanActions": 0, "defaultValue": 10, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -189,7 +189,7 @@ ], "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -224,7 +224,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -360,7 +360,7 @@ "entityKey": "activeHoursStart", "booleanActions": 0, "defaultValue": "08:00:00.0000000", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -496,7 +496,7 @@ "entityKey": "activeHoursEnd", "booleanActions": 0, "defaultValue": "17:00:00.0000000", - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -512,7 +512,7 @@ ], "entityKey": "installationSchedule", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -536,7 +536,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -672,7 +672,7 @@ "entityKey": "activeHoursStart", "booleanActions": 0, "defaultValue": "08:00:00.0000000", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -808,7 +808,7 @@ "entityKey": "activeHoursEnd", "booleanActions": 0, "defaultValue": "17:00:00.0000000", - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -824,7 +824,7 @@ ], "entityKey": "installationSchedule", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -872,7 +872,7 @@ "entityKey": "updateWeeks", "booleanActions": 0, "defaultValue": "everyWeek", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -889,7 +889,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -945,7 +945,7 @@ "entityKey": "scheduledInstallDay", "booleanActions": 0, "defaultValue": "everyday", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1081,7 +1081,7 @@ "entityKey": "scheduledInstallTime", "booleanActions": 0, "defaultValue": "03:00:00.0000000", - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -1097,7 +1097,7 @@ ], "entityKey": "installationSchedule", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -1117,7 +1117,7 @@ "entityKey": "automaticUpdateMode", "booleanActions": 0, "defaultValue": "autoInstallAtMaintenanceTime", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1143,7 +1143,7 @@ "entityKey": "skipChecksBeforeRestart", "booleanActions": 0, "defaultValue": false, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1169,7 +1169,7 @@ "entityKey": "userPauseAccess", "booleanActions": 0, "defaultValue": "enabled", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1195,7 +1195,7 @@ "entityKey": "userWindowsUpdateScanAccess", "booleanActions": 0, "defaultValue": "enabled", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1221,7 +1221,7 @@ "entityKey": "autoRestartNotificationDismissal", "booleanActions": 0, "defaultValue": "notConfigured", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1238,7 +1238,7 @@ "entityKey": "scheduleRestartWarningInHours", "booleanActions": 0, "defaultValue": 4, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1255,7 +1255,7 @@ "entityKey": "scheduleImminentRestartWarningInMinutes", "booleanActions": 0, "defaultValue": 15, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1291,7 +1291,7 @@ "entityKey": "updateNotificationLevel", "booleanActions": 0, "defaultValue": "defaultNotifications", - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1311,7 +1311,7 @@ ], "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1327,7 +1327,7 @@ ], "entityKey": "engagedRestartTransitionScheduleInDays", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1343,7 +1343,7 @@ ], "entityKey": "engagedRestartSnoozeScheduleInDays", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1359,7 +1359,7 @@ ], "entityKey": "engagedRestartDeadlineInDays", "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -1378,7 +1378,7 @@ "entityKey": "enableEngagedRestart", "booleanActions": 0, "defaultValue": false, - "policyType": 74, + "policyType": 75, "enabled": false }, { @@ -1401,7 +1401,7 @@ "entityKey": "deadlineForFeatureUpdatesInDays", "booleanActions": 0, "defaultValue": 7, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1418,7 +1418,7 @@ "entityKey": "deadlineForQualityUpdatesInDays", "booleanActions": 0, "defaultValue": 7, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1435,7 +1435,7 @@ "entityKey": "deadlineGracePeriodInDays", "booleanActions": 0, "defaultValue": 2, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1461,7 +1461,7 @@ "entityKey": "postponeRebootUntilAfterDeadline", "booleanActions": 0, "defaultValue": false, - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -1480,7 +1480,7 @@ "entityKey": "useDeadlineSettings", "booleanActions": 0, "defaultValue": false, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1531,7 +1531,7 @@ "entityKey": "deliveryOptimizationMode", "booleanActions": 0, "defaultValue": "userDefined", - "policyType": 74, + "policyType": 75, "enabled": false }, { @@ -1551,7 +1551,7 @@ ], "booleanActions": 0, - "policyType": 74, + "policyType": 75, "enabled": true }, { @@ -1602,7 +1602,7 @@ "entityKey": "deliveryOptimizationMode", "booleanActions": 0, "defaultValue": "userDefined", - "policyType": 74, + "policyType": 75, "enabled": true } ], @@ -1612,7 +1612,7 @@ "entityKey": "deliveryOptimizationMode", "booleanActions": 0, "defaultValue": "userDefined", - "policyType": 74, + "policyType": 75, "enabled": true } ] diff --git a/Documentation/ObjectInfo/start_windows10general.json b/Documentation/ObjectInfo/start_windows10general.json index 2c3bbca..5554686 100644 --- a/Documentation/ObjectInfo/start_windows10general.json +++ b/Documentation/ObjectInfo/start_windows10general.json @@ -16,7 +16,7 @@ "entityKey": "startMenuLayoutXml", "booleanActions": 0, "defaultValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -35,7 +35,7 @@ "entityKey": "startMenuLayoutEdgeAssetsXml", "booleanActions": 0, "defaultValue": "", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -52,7 +52,7 @@ "entityKey": "startBlockUnpinningAppsFromTaskbar", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -69,7 +69,7 @@ "entityKey": "logonBlockFastUserSwitching", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -86,7 +86,7 @@ "entityKey": "startMenuHideFrequentlyUsedApps", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -103,7 +103,7 @@ "entityKey": "startMenuHideRecentlyAddedApps", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -135,7 +135,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -152,7 +152,7 @@ "entityKey": "startMenuHideRecentJumpLists", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -189,7 +189,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -206,7 +206,7 @@ "entityKey": "startMenuHidePowerButton", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -229,7 +229,7 @@ "entityKey": "startMenuHideLock", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -246,7 +246,7 @@ "entityKey": "startMenuHideSignOut", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -256,7 +256,7 @@ "entityKey": "startMenuHideUserTile", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -273,7 +273,7 @@ "entityKey": "startMenuHideShutDown", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -290,7 +290,7 @@ "entityKey": "startMenuHideSleep", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -307,7 +307,7 @@ "entityKey": "startMenuHideHibernate", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -324,7 +324,7 @@ "entityKey": "startMenuHideSwitchAccount", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -341,7 +341,7 @@ "entityKey": "startMenuHideRestartOptions", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -373,7 +373,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -405,7 +405,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -437,7 +437,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -469,7 +469,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -501,7 +501,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -533,7 +533,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -565,7 +565,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -597,7 +597,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -629,7 +629,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -661,7 +661,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/systemextensions_macextensions.json b/Documentation/ObjectInfo/systemextensions_macextensions.json index 0758212..21ff095 100644 --- a/Documentation/ObjectInfo/systemextensions_macextensions.json +++ b/Documentation/ObjectInfo/systemextensions_macextensions.json @@ -13,7 +13,7 @@ ], "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -38,7 +38,7 @@ "entityKey": "systemExtensionsBlockOverride", "booleanActions": 9, "defaultValue": false, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -57,7 +57,7 @@ ], "entityKey": "systemExtensionsAllowedTeamIdentifiers", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } } @@ -74,7 +74,7 @@ ], "entityKey": "systemExtensionsAllowedTeamIdentifiers", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -93,7 +93,7 @@ ], "entityKey": "bundleId", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } }, @@ -111,7 +111,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } } @@ -128,7 +128,7 @@ ], "entityKey": "systemExtensionsAllowed", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true }, { @@ -147,7 +147,7 @@ ], "entityKey": "teamIdentifier", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } }, @@ -178,7 +178,7 @@ ], "entityKey": "allowedTypes", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } } @@ -195,7 +195,7 @@ ], "entityKey": "systemExtensionsAllowedTypes", "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } ], @@ -203,7 +203,7 @@ ], "booleanActions": 0, - "policyType": 59, + "policyType": 60, "enabled": true } ] diff --git a/Documentation/ObjectInfo/trustedcert_iostrustedcertificate.json b/Documentation/ObjectInfo/trustedcert_iostrustedcertificate.json index 07dfbf3..a57b38b 100644 --- a/Documentation/ObjectInfo/trustedcert_iostrustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_iostrustedcertificate.json @@ -14,7 +14,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 50, + "policyType": 51, "enabled": true } } diff --git a/Documentation/ObjectInfo/trustedcert_mactrustedcertificate.json b/Documentation/ObjectInfo/trustedcert_mactrustedcertificate.json index 224f01e..cd8a94b 100644 --- a/Documentation/ObjectInfo/trustedcert_mactrustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_mactrustedcertificate.json @@ -14,7 +14,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 64, + "policyType": 65, "enabled": true } } diff --git a/Documentation/ObjectInfo/trustedcert_windows10trustedcertificate.json b/Documentation/ObjectInfo/trustedcert_windows10trustedcertificate.json index baad6e0..4218fac 100644 --- a/Documentation/ObjectInfo/trustedcert_windows10trustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_windows10trustedcertificate.json @@ -15,7 +15,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 87, + "policyType": 88, "enabled": true }, { @@ -46,7 +46,7 @@ "entityKey": "destinationStore", "booleanActions": 0, "defaultValue": "computerCertStoreRoot", - "policyType": 87, + "policyType": 88, "enabled": true } ] diff --git a/Documentation/ObjectInfo/trustedcert_windows10xtrustedcertificate.json b/Documentation/ObjectInfo/trustedcert_windows10xtrustedcertificate.json index 1a709a7..8493dd0 100644 --- a/Documentation/ObjectInfo/trustedcert_windows10xtrustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_windows10xtrustedcertificate.json @@ -15,7 +15,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 112, + "policyType": 113, "enabled": true }, { @@ -46,7 +46,7 @@ "entityKey": "destinationStore", "booleanActions": 0, "defaultValue": "computerCertStoreRoot", - "policyType": 112, + "policyType": 113, "enabled": true } ] diff --git a/Documentation/ObjectInfo/trustedcert_windows8trustedcertificate.json b/Documentation/ObjectInfo/trustedcert_windows8trustedcertificate.json index b76effe..1b065f4 100644 --- a/Documentation/ObjectInfo/trustedcert_windows8trustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_windows8trustedcertificate.json @@ -15,7 +15,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 93, + "policyType": 94, "enabled": true }, { @@ -46,7 +46,7 @@ "entityKey": "destinationStore", "booleanActions": 0, "defaultValue": "computerCertStoreRoot", - "policyType": 93, + "policyType": 94, "enabled": true } ] diff --git a/Documentation/ObjectInfo/trustedcert_windowsphonetrustedcertificate.json b/Documentation/ObjectInfo/trustedcert_windowsphonetrustedcertificate.json index 2cf6959..483a002 100644 --- a/Documentation/ObjectInfo/trustedcert_windowsphonetrustedcertificate.json +++ b/Documentation/ObjectInfo/trustedcert_windowsphonetrustedcertificate.json @@ -14,7 +14,7 @@ ], "entityKey": "trustedRootCertificate", "booleanActions": 0, - "policyType": 103, + "policyType": 104, "enabled": true } } diff --git a/Documentation/ObjectInfo/updates_windows8general.json b/Documentation/ObjectInfo/updates_windows8general.json index d61379b..d104eea 100644 --- a/Documentation/ObjectInfo/updates_windows8general.json +++ b/Documentation/ObjectInfo/updates_windows8general.json @@ -39,7 +39,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 91, + "policyType": 92, "enabled": true } ], @@ -48,7 +48,7 @@ ], "entityKey": "updatesRequireAutomaticUpdates", "booleanActions": 4, - "policyType": 91, + "policyType": 92, "enabled": true } } diff --git a/Documentation/ObjectInfo/userrights_windows10endpointprotection.json b/Documentation/ObjectInfo/userrights_windows10endpointprotection.json index 463789c..c591afe 100644 --- a/Documentation/ObjectInfo/userrights_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/userrights_windows10endpointprotection.json @@ -5,7 +5,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -14,12 +14,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "userRightsAccessCredentialManagerAsTrustedCallerName", "descriptionResourceKey": "userRightsAccessCredentialManagerAsTrustedCallerDesc", "childSettings": [ @@ -37,7 +37,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -49,14 +49,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -68,14 +68,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -87,13 +87,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -104,12 +104,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -120,7 +120,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -136,12 +136,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -150,7 +150,7 @@ ], "entityKey": "userRightsAccessCredentialManagerAsTrustedCaller", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -158,7 +158,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -167,12 +167,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "userRightsAllowLocalLogOnName", "descriptionResourceKey": "userRightsAllowLocalLogOnDesc", "childSettings": [ @@ -190,7 +190,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -202,14 +202,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -221,14 +221,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -240,13 +240,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -257,12 +257,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -273,7 +273,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -289,12 +289,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -303,7 +303,7 @@ ], "entityKey": "userRightsLocalLogOn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -311,7 +311,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -320,12 +320,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "userRightsAllowAccessFromNetworkName", "descriptionResourceKey": "userRightsAllowAccessFromNetworkDesc", "childSettings": [ @@ -343,7 +343,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -355,14 +355,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -374,14 +374,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -393,13 +393,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -410,12 +410,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -426,7 +426,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -442,12 +442,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -456,7 +456,7 @@ ], "entityKey": "userRightsAllowAccessFromNetwork", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -464,7 +464,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -473,12 +473,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "userRightsActAsPartOfTheOperatingSystemName", "descriptionResourceKey": "userRightActAsPartOfTheOperatingSystemDesc", "childSettings": [ @@ -496,7 +496,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -508,14 +508,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -527,14 +527,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -546,13 +546,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -563,12 +563,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -579,7 +579,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -595,12 +595,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -609,7 +609,7 @@ ], "entityKey": "userRightsActAsPartOfTheOperatingSystem", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -617,7 +617,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -626,12 +626,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsBackupFilesAndDirectoriesName", "descriptionResourceKey": "UserRightsBackupFilesAndDirectoriesDesc", "childSettings": [ @@ -649,7 +649,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -661,14 +661,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -680,14 +680,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -699,13 +699,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -716,12 +716,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -732,7 +732,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -748,12 +748,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -762,7 +762,7 @@ ], "entityKey": "userRightsBackupData", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -770,7 +770,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -779,12 +779,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsChangeSystemTimeName", "descriptionResourceKey": "UserRightsChangeSystemTimeDesc", "childSettings": [ @@ -802,7 +802,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -814,14 +814,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -833,14 +833,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -852,13 +852,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -869,12 +869,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -885,7 +885,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -901,12 +901,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -915,7 +915,7 @@ ], "entityKey": "userRightsChangeSystemTime", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -923,7 +923,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -932,12 +932,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsCreateGlobalObjectsName", "descriptionResourceKey": "UserRightsCreateGlobalObjectsDesc", "childSettings": [ @@ -955,7 +955,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -967,14 +967,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -986,14 +986,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1005,13 +1005,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1022,12 +1022,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1038,7 +1038,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1054,12 +1054,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1068,7 +1068,7 @@ ], "entityKey": "userRightsCreateGlobalObjects", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1076,7 +1076,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1085,12 +1085,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsCreatePageFileName", "descriptionResourceKey": "UserRightsCreatePageFileDesc", "childSettings": [ @@ -1108,7 +1108,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1120,14 +1120,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1139,14 +1139,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1158,13 +1158,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1175,12 +1175,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1191,7 +1191,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1207,12 +1207,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1221,7 +1221,7 @@ ], "entityKey": "userRightsCreatePageFile", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1229,7 +1229,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1238,12 +1238,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsCreatePermanentSharedObjectsName", "descriptionResourceKey": "UserRightsCreatePermanentSharedObjectsDesc", "childSettings": [ @@ -1261,7 +1261,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1273,14 +1273,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1292,14 +1292,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1311,13 +1311,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1328,12 +1328,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1344,7 +1344,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1360,12 +1360,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1374,7 +1374,7 @@ ], "entityKey": "userRightsCreatePermanentSharedObjects", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1382,7 +1382,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1391,12 +1391,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsCreateSymbolicLinksName", "descriptionResourceKey": "UserRightsCreateSymbolicLinksDesc", "childSettings": [ @@ -1414,7 +1414,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1426,14 +1426,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1445,14 +1445,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1464,13 +1464,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1481,12 +1481,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1497,7 +1497,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1513,12 +1513,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1527,7 +1527,7 @@ ], "entityKey": "userRightsCreateSymbolicLinks", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1535,7 +1535,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1544,12 +1544,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsCreateTokenName", "descriptionResourceKey": "UserRightsCreateTokenDesc", "childSettings": [ @@ -1567,7 +1567,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1579,14 +1579,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1598,14 +1598,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1617,13 +1617,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1634,12 +1634,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1650,7 +1650,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1666,12 +1666,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1680,7 +1680,7 @@ ], "entityKey": "userRightsCreateToken", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1688,7 +1688,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1697,12 +1697,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsDebugProgramsName", "descriptionResourceKey": "UserRightsDebugProgramsDesc", "childSettings": [ @@ -1720,7 +1720,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1732,14 +1732,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1751,14 +1751,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1770,13 +1770,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1787,12 +1787,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1803,7 +1803,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1819,12 +1819,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1833,7 +1833,7 @@ ], "entityKey": "userRightsDebugPrograms", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1841,7 +1841,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1850,12 +1850,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "userRightsBlockAccessFromNetworkName", "descriptionResourceKey": "userRightsBlockAccessFromNetworkDesc", "childSettings": [ @@ -1873,7 +1873,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -1885,14 +1885,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -1904,14 +1904,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -1923,13 +1923,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -1940,12 +1940,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -1956,7 +1956,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -1972,12 +1972,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -1986,7 +1986,7 @@ ], "entityKey": "userRightsBlockAccessFromNetwork", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -1994,7 +1994,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2003,12 +2003,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsDenyLocalLogOnName", "descriptionResourceKey": "UserRightsDenyLocalLogOnDesc", "childSettings": [ @@ -2026,7 +2026,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2038,14 +2038,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2057,14 +2057,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2076,13 +2076,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2093,12 +2093,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2109,7 +2109,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2125,12 +2125,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2139,7 +2139,7 @@ ], "entityKey": "userRightsDenyLocalLogOn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2147,7 +2147,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2156,12 +2156,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsRemoteDesktopServicesLogOnName", "descriptionResourceKey": "UserRightsRemoteDesktopServicesLogOnDesc", "childSettings": [ @@ -2179,7 +2179,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2191,14 +2191,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2210,14 +2210,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2229,13 +2229,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2246,12 +2246,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2262,7 +2262,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2278,12 +2278,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2292,7 +2292,7 @@ ], "entityKey": "userRightsRemoteDesktopServicesLogOn", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2300,7 +2300,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2309,12 +2309,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsDelegationName", "descriptionResourceKey": "UserRightsDelegationDesc", "childSettings": [ @@ -2332,7 +2332,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2344,14 +2344,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2363,14 +2363,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2382,13 +2382,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2399,12 +2399,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2415,7 +2415,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2431,12 +2431,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2445,7 +2445,7 @@ ], "entityKey": "userRightsDelegation", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2453,7 +2453,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2462,12 +2462,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsGenerateSecurityAuditsName", "descriptionResourceKey": "UserRightsGenerateSecurityAuditsDesc", "childSettings": [ @@ -2485,7 +2485,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2497,14 +2497,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2516,14 +2516,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2535,13 +2535,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2552,12 +2552,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2568,7 +2568,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2584,12 +2584,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2598,7 +2598,7 @@ ], "entityKey": "userRightsGenerateSecurityAudits", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2606,7 +2606,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2615,12 +2615,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsImpersonateClientName", "descriptionResourceKey": "UserRightsImpersonateClientDesc", "childSettings": [ @@ -2638,7 +2638,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2650,14 +2650,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2669,14 +2669,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2688,13 +2688,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2705,12 +2705,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2721,7 +2721,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2737,12 +2737,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2751,7 +2751,7 @@ ], "entityKey": "userRightsImpersonateClient", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2759,7 +2759,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2768,12 +2768,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsIncreaseSchedulingPriorityName", "descriptionResourceKey": "UserRightsIncreaseSchedulingPriorityDesc", "childSettings": [ @@ -2791,7 +2791,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2803,14 +2803,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2822,14 +2822,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2841,13 +2841,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -2858,12 +2858,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -2874,7 +2874,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -2890,12 +2890,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2904,7 +2904,7 @@ ], "entityKey": "userRightsIncreaseSchedulingPriority", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -2912,7 +2912,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -2921,12 +2921,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsLoadUnloadDriversName", "descriptionResourceKey": "UserRightsLoadUnloadDriversDesc", "childSettings": [ @@ -2944,7 +2944,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -2956,14 +2956,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -2975,14 +2975,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -2994,13 +2994,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3011,12 +3011,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3027,7 +3027,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3043,12 +3043,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3057,7 +3057,7 @@ ], "entityKey": "userRightsLoadUnloadDrivers", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3065,7 +3065,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3074,12 +3074,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsLockMemoryName", "descriptionResourceKey": "UserRightsLockMemoryDesc", "childSettings": [ @@ -3097,7 +3097,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3109,14 +3109,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3128,14 +3128,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3147,13 +3147,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3164,12 +3164,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3180,7 +3180,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3196,12 +3196,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3210,7 +3210,7 @@ ], "entityKey": "userRightsLockMemory", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3218,7 +3218,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3227,12 +3227,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsManageAuditingAndSecurityLogsName", "descriptionResourceKey": "UserRightsManageAuditingAndSecurityLogsDesc", "childSettings": [ @@ -3250,7 +3250,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3262,14 +3262,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3281,14 +3281,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3300,13 +3300,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3317,12 +3317,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3333,7 +3333,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3349,12 +3349,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3363,7 +3363,7 @@ ], "entityKey": "userRightsManageAuditingAndSecurityLogs", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3371,7 +3371,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3380,12 +3380,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsManageVolumesName", "descriptionResourceKey": "UserRightsManageVolumesDesc", "childSettings": [ @@ -3403,7 +3403,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3415,14 +3415,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3434,14 +3434,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3453,13 +3453,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3470,12 +3470,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3486,7 +3486,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3502,12 +3502,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3516,7 +3516,7 @@ ], "entityKey": "userRightsManageVolumes", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3524,7 +3524,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3533,12 +3533,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsModifyFirmwareEnvironmentName", "descriptionResourceKey": "UserRightsModifyFirmwareEnvironmentDesc", "childSettings": [ @@ -3556,7 +3556,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3568,14 +3568,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3587,14 +3587,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3606,13 +3606,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3623,12 +3623,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3639,7 +3639,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3655,12 +3655,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3669,7 +3669,7 @@ ], "entityKey": "userRightsModifyFirmwareEnvironment", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3677,7 +3677,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3686,12 +3686,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsModifyObjectLabelsName", "descriptionResourceKey": "UserRightsModifyObjectLabelsDesc", "childSettings": [ @@ -3709,7 +3709,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3721,14 +3721,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3740,14 +3740,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3759,13 +3759,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3776,12 +3776,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3792,7 +3792,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3808,12 +3808,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3822,7 +3822,7 @@ ], "entityKey": "userRightsModifyObjectLabels", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3830,7 +3830,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3839,12 +3839,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsProfileSingleProcessName", "descriptionResourceKey": "UserRightsProfileSingleProcessDesc", "childSettings": [ @@ -3862,7 +3862,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -3874,14 +3874,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -3893,14 +3893,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -3912,13 +3912,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -3929,12 +3929,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -3945,7 +3945,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -3961,12 +3961,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3975,7 +3975,7 @@ ], "entityKey": "userRightsProfileSingleProcess", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -3983,7 +3983,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -3992,12 +3992,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsRemoteShutdownName", "descriptionResourceKey": "UserRightsRemoteShutdownDesc", "childSettings": [ @@ -4015,7 +4015,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -4027,14 +4027,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -4046,14 +4046,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -4065,13 +4065,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -4082,12 +4082,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -4098,7 +4098,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -4114,12 +4114,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -4128,7 +4128,7 @@ ], "entityKey": "userRightsRemoteShutdown", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -4136,7 +4136,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -4145,12 +4145,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsRestoreDataName", "descriptionResourceKey": "UserRightsRestoreDataDesc", "childSettings": [ @@ -4168,7 +4168,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -4180,14 +4180,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -4199,14 +4199,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -4218,13 +4218,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -4235,12 +4235,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -4251,7 +4251,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -4267,12 +4267,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -4281,7 +4281,7 @@ ], "entityKey": "userRightsRestoreData", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { @@ -4289,7 +4289,7 @@ { "value": "#microsoft.graph.deviceManagementUserRightsSetting", "dataType": 9, - "category": 139, + "category": 140, "childSettings": [ ], @@ -4298,12 +4298,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsTakeOwnershipName", "descriptionResourceKey": "UserRightsTakeOwnershipDesc", "childSettings": [ @@ -4321,7 +4321,7 @@ { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableNameName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsNameExample", @@ -4333,14 +4333,14 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableSidName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsSidExample", @@ -4352,14 +4352,14 @@ ], "entityKey": "securityIdentifier", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidTableDescriptionName", "descriptionResourceKey": "", "emptyValueResourceKey": "userRightsDescriptionExample", @@ -4371,13 +4371,13 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } } ], "dataType": 21, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitleName", "descriptionResourceKey": "UserRightsAddSidTableSidName", "childSettings": [ @@ -4388,12 +4388,12 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 5, - "category": 139, + "category": 140, "nameResourceKey": "UserRightsAddSidBladeTitle", "emptyValueResourceKey": "UserRightsSidName", "childSettings": [ @@ -4404,7 +4404,7 @@ ], "entityKey": "localUsersOrGroups", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ], @@ -4420,12 +4420,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 76, + "policyType": 77, "enabled": true } ], "dataType": 6, - "category": 139, + "category": 140, "childSettings": [ ], @@ -4434,7 +4434,7 @@ ], "entityKey": "userRightsTakeOwnership", "booleanActions": 0, - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json b/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json index 3fe33a8..bd0b67b 100644 --- a/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json +++ b/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json @@ -133,7 +133,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 8, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "dataType": 5, @@ -370,7 +386,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 8, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "dataType": 5, @@ -607,7 +639,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 8, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "dataType": 5, @@ -844,7 +892,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 8, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "dataType": 5, @@ -1081,7 +1145,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 8, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "dataType": 5, @@ -1546,6 +1626,109 @@ "booleanActions": 0, "policyType": 8, "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "configurationKey", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "key", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "valueType", + "descriptionResourceKey": "Empty", + "emptyValueResourceKey": "selectOneOption", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "integer", + "value": "int", + "enabled": true + }, + { + "nameResourceKey": "string", + "value": "string", + "enabled": true + }, + { + "nameResourceKey": "boolean", + "value": "bool", + "enabled": true + } + ], + "entityKey": "type", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "configurationValue", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "value", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "Empty", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "sharedVpnCustomData", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "CustomSettingsSummaryTitle", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": false } ], "enabled": true diff --git a/Documentation/ObjectInfo/vpn_androidforworkvpn.json b/Documentation/ObjectInfo/vpn_androidforworkvpn.json index e41ef3e..c17abfe 100644 --- a/Documentation/ObjectInfo/vpn_androidforworkvpn.json +++ b/Documentation/ObjectInfo/vpn_androidforworkvpn.json @@ -133,7 +133,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -338,7 +354,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -527,7 +559,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -716,7 +764,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -905,7 +969,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -1094,7 +1174,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 12, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "dataType": 5, @@ -1511,6 +1607,109 @@ "booleanActions": 0, "policyType": 12, "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "configurationKey", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "key", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "valueType", + "descriptionResourceKey": "Empty", + "emptyValueResourceKey": "selectOneOption", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "integer", + "value": "int", + "enabled": true + }, + { + "nameResourceKey": "string", + "value": "string", + "enabled": true + }, + { + "nameResourceKey": "boolean", + "value": "bool", + "enabled": true + } + ], + "entityKey": "type", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "configurationValue", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "value", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "Empty", + "descriptionResourceKey": "Empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "sharedVpnCustomData", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "CustomSettingsSummaryTitle", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": false } ], "enabled": true diff --git a/Documentation/ObjectInfo/vpn_androidvpn.json b/Documentation/ObjectInfo/vpn_androidvpn.json index 25e8073..ffc7e43 100644 --- a/Documentation/ObjectInfo/vpn_androidvpn.json +++ b/Documentation/ObjectInfo/vpn_androidvpn.json @@ -115,7 +115,23 @@ "entityKey": "identityCertificate", "booleanActions": 0, "policyType": 25, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 25, + "enabled": false } ], "dataType": 5, diff --git a/Documentation/ObjectInfo/vpn_iosvpn.json b/Documentation/ObjectInfo/vpn_iosvpn.json index 1f5f5e7..dcec05b 100644 --- a/Documentation/ObjectInfo/vpn_iosvpn.json +++ b/Documentation/ObjectInfo/vpn_iosvpn.json @@ -32,7 +32,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -51,7 +51,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -66,7 +66,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -81,7 +81,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -97,7 +97,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -132,8 +132,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -148,7 +164,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -178,7 +194,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -192,7 +208,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -201,7 +217,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -210,7 +226,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -236,7 +252,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -250,7 +266,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -266,7 +282,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -297,7 +313,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -317,7 +333,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -373,7 +389,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -388,7 +404,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -405,7 +421,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -432,7 +448,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -447,7 +463,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -464,7 +480,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -488,7 +504,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -497,7 +513,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -512,7 +528,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -556,7 +572,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -571,7 +587,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -588,7 +604,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -615,7 +631,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -630,7 +646,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -647,7 +663,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -671,7 +687,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -680,7 +696,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -695,7 +711,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -739,7 +755,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -754,7 +770,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -774,7 +790,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -789,7 +805,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -806,7 +822,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -833,7 +849,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -848,7 +864,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -857,7 +873,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -901,7 +917,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -916,7 +932,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -933,7 +949,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -960,7 +976,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -975,7 +991,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -992,7 +1008,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1016,7 +1032,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1025,7 +1041,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1040,7 +1056,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1049,7 +1065,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1066,7 +1082,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1095,7 +1111,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1116,7 +1132,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1136,7 +1152,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1153,7 +1169,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1173,7 +1189,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1190,7 +1206,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -1210,7 +1226,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1227,7 +1243,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1256,7 +1272,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1265,7 +1281,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1279,7 +1295,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1298,7 +1314,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1317,7 +1333,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1334,7 +1350,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1351,7 +1367,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1367,7 +1383,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1381,7 +1397,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1407,7 +1423,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1426,7 +1442,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1441,7 +1457,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1456,7 +1472,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1472,7 +1488,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1507,8 +1523,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -1523,7 +1555,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1553,7 +1585,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1567,7 +1599,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1576,7 +1608,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1585,7 +1617,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1611,7 +1643,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1625,7 +1657,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1641,7 +1673,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1672,7 +1704,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1692,7 +1724,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -1748,7 +1780,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1763,7 +1795,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1780,7 +1812,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1807,7 +1839,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1822,7 +1854,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1839,7 +1871,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1863,7 +1895,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1872,7 +1904,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1887,7 +1919,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1931,7 +1963,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -1946,7 +1978,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -1963,7 +1995,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -1990,7 +2022,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2005,7 +2037,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2022,7 +2054,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2046,7 +2078,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2055,7 +2087,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2070,7 +2102,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2114,7 +2146,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2129,7 +2161,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2149,7 +2181,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2164,7 +2196,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2181,7 +2213,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2208,7 +2240,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2223,7 +2255,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2232,7 +2264,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2276,7 +2308,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2291,7 +2323,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2308,7 +2340,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2335,7 +2367,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2350,7 +2382,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2367,7 +2399,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2391,7 +2423,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2400,7 +2432,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2415,7 +2447,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2424,7 +2456,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2441,7 +2473,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2470,7 +2502,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2491,7 +2523,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2511,7 +2543,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2528,7 +2560,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2548,7 +2580,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2565,7 +2597,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -2585,7 +2617,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -2602,7 +2634,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2631,7 +2663,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2640,7 +2672,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2654,7 +2686,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2673,7 +2705,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2692,7 +2724,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2709,7 +2741,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2726,7 +2758,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2742,7 +2774,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2756,7 +2788,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2782,7 +2814,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2801,7 +2833,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2816,7 +2848,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2831,7 +2863,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2847,7 +2879,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2882,8 +2914,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -2898,7 +2946,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2928,7 +2976,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2942,7 +2990,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2951,7 +2999,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -2960,7 +3008,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -2986,7 +3034,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3003,7 +3051,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3017,7 +3065,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3033,7 +3081,7 @@ "entityKey": "optInToDeviceIdSharing", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3047,7 +3095,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3063,7 +3111,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3094,7 +3142,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3114,7 +3162,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -3170,7 +3218,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3185,7 +3233,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3202,7 +3250,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3229,7 +3277,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3244,7 +3292,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3261,7 +3309,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3285,7 +3333,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3294,7 +3342,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3309,7 +3357,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3353,7 +3401,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3368,7 +3416,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3385,7 +3433,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3412,7 +3460,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3427,7 +3475,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3444,7 +3492,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3468,7 +3516,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3477,7 +3525,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3492,7 +3540,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3536,7 +3584,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3551,7 +3599,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3571,7 +3619,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3586,7 +3634,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3603,7 +3651,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3630,7 +3678,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3645,7 +3693,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3654,7 +3702,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3698,7 +3746,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3713,7 +3761,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3730,7 +3778,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3757,7 +3805,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3772,7 +3820,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3789,7 +3837,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3813,7 +3861,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3822,7 +3870,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3837,7 +3885,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3846,7 +3894,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3863,7 +3911,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3892,7 +3940,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -3913,7 +3961,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3933,7 +3981,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3950,7 +3998,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -3970,7 +4018,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -3987,7 +4035,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -4007,7 +4055,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4024,7 +4072,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4053,7 +4101,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4062,7 +4110,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4076,7 +4124,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4095,7 +4143,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4114,7 +4162,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4131,7 +4179,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4148,7 +4196,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4164,7 +4212,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4178,7 +4226,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4204,7 +4252,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4223,7 +4271,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4238,7 +4286,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4253,7 +4301,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4269,7 +4317,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4304,8 +4352,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -4320,7 +4384,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4350,7 +4414,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4364,7 +4428,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4373,7 +4437,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4382,7 +4446,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4408,7 +4472,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4422,7 +4486,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4438,7 +4502,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4469,7 +4533,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4489,7 +4553,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -4545,7 +4609,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4560,7 +4624,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4577,7 +4641,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4604,7 +4668,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4619,7 +4683,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4636,7 +4700,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4660,7 +4724,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4669,7 +4733,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4684,7 +4748,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4728,7 +4792,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4743,7 +4807,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4760,7 +4824,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4787,7 +4851,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4802,7 +4866,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4819,7 +4883,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4843,7 +4907,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4852,7 +4916,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4867,7 +4931,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -4911,7 +4975,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4926,7 +4990,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4946,7 +5010,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -4961,7 +5025,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -4978,7 +5042,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5005,7 +5069,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5020,7 +5084,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5029,7 +5093,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5073,7 +5137,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5088,7 +5152,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5105,7 +5169,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5132,7 +5196,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5147,7 +5211,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5164,7 +5228,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5188,7 +5252,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5197,7 +5261,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5212,7 +5276,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5221,7 +5285,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5238,7 +5302,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5267,7 +5331,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5288,7 +5352,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5308,7 +5372,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5325,7 +5389,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5345,7 +5409,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5362,7 +5426,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -5382,7 +5446,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5399,7 +5463,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5428,7 +5492,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5437,7 +5501,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5451,7 +5515,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5470,7 +5534,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5489,7 +5553,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5506,7 +5570,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5523,7 +5587,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5539,7 +5603,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5553,7 +5617,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5579,7 +5643,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5598,7 +5662,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5613,7 +5677,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5628,7 +5692,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5644,7 +5708,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5679,8 +5743,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -5695,7 +5775,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5725,7 +5805,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5739,7 +5819,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5748,7 +5828,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5757,7 +5837,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5783,7 +5863,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5797,7 +5877,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5813,7 +5893,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5844,7 +5924,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5864,7 +5944,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -5920,7 +6000,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5935,7 +6015,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -5952,7 +6032,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -5979,7 +6059,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -5994,7 +6074,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6011,7 +6091,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6035,7 +6115,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6044,7 +6124,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6059,7 +6139,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6103,7 +6183,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6118,7 +6198,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6135,7 +6215,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6162,7 +6242,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6177,7 +6257,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6194,7 +6274,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6218,7 +6298,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6227,7 +6307,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6242,7 +6322,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6286,7 +6366,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6301,7 +6381,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6321,7 +6401,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6336,7 +6416,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6353,7 +6433,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6380,7 +6460,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6395,7 +6475,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6404,7 +6484,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6448,7 +6528,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6463,7 +6543,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6480,7 +6560,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6507,7 +6587,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6522,7 +6602,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6539,7 +6619,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6563,7 +6643,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6572,7 +6652,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6587,7 +6667,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6596,7 +6676,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6613,7 +6693,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6642,7 +6722,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6663,7 +6743,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6683,7 +6763,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6700,7 +6780,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6720,7 +6800,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6737,7 +6817,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -6757,7 +6837,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -6774,7 +6854,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6803,7 +6883,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6812,7 +6892,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6826,7 +6906,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6845,7 +6925,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6864,7 +6944,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6881,7 +6961,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6898,7 +6978,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6914,7 +6994,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6928,7 +7008,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -6954,7 +7034,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6973,7 +7053,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -6988,7 +7068,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7003,7 +7083,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7019,7 +7099,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7054,8 +7134,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -7070,7 +7166,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7100,7 +7196,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7114,7 +7210,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7123,7 +7219,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7132,7 +7228,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7158,7 +7254,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7172,7 +7268,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7188,7 +7284,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7219,7 +7315,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7239,7 +7335,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -7295,7 +7391,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7310,7 +7406,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7327,7 +7423,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7354,7 +7450,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7369,7 +7465,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7386,7 +7482,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7410,7 +7506,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7419,7 +7515,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7434,7 +7530,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7478,7 +7574,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7493,7 +7589,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7510,7 +7606,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7537,7 +7633,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7552,7 +7648,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7569,7 +7665,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7593,7 +7689,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7602,7 +7698,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7617,7 +7713,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7661,7 +7757,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7676,7 +7772,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7696,7 +7792,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7711,7 +7807,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7728,7 +7824,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7755,7 +7851,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7770,7 +7866,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7779,7 +7875,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7823,7 +7919,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7838,7 +7934,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7855,7 +7951,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7882,7 +7978,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7897,7 +7993,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7914,7 +8010,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7938,7 +8034,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7947,7 +8043,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -7962,7 +8058,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -7971,7 +8067,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -7988,7 +8084,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8017,7 +8113,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8038,7 +8134,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8058,7 +8154,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8075,7 +8171,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8095,7 +8191,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8112,7 +8208,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -8132,7 +8228,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8149,7 +8245,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8178,7 +8274,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8187,7 +8283,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8201,7 +8297,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8220,7 +8316,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8239,7 +8335,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8256,7 +8352,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8273,7 +8369,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8289,7 +8385,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8303,7 +8399,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8329,7 +8425,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8348,7 +8444,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8363,7 +8459,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8378,7 +8474,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8394,7 +8490,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8429,8 +8525,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -8445,7 +8557,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8475,7 +8587,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8489,7 +8601,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8498,7 +8610,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8507,7 +8619,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8533,7 +8645,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8550,7 +8662,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8564,7 +8676,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8580,7 +8692,7 @@ "entityKey": "optInToDeviceIdSharing", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8594,7 +8706,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8610,7 +8722,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8641,7 +8753,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8661,7 +8773,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -8717,7 +8829,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8732,7 +8844,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8749,7 +8861,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8776,7 +8888,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8791,7 +8903,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8808,7 +8920,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8832,7 +8944,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8841,7 +8953,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8856,7 +8968,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8900,7 +9012,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8915,7 +9027,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8932,7 +9044,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -8959,7 +9071,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -8974,7 +9086,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -8991,7 +9103,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9015,7 +9127,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9024,7 +9136,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9039,7 +9151,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9083,7 +9195,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9098,7 +9210,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9118,7 +9230,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9133,7 +9245,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9150,7 +9262,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9177,7 +9289,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9192,7 +9304,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9201,7 +9313,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9245,7 +9357,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9260,7 +9372,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9277,7 +9389,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9304,7 +9416,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9319,7 +9431,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9336,7 +9448,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9360,7 +9472,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9369,7 +9481,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9384,7 +9496,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9393,7 +9505,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9410,7 +9522,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9439,7 +9551,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9460,7 +9572,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9480,7 +9592,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9497,7 +9609,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9517,7 +9629,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9534,7 +9646,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -9554,7 +9666,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -9571,7 +9683,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9600,7 +9712,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9609,7 +9721,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9623,7 +9735,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9642,7 +9754,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9661,7 +9773,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9678,7 +9790,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9695,7 +9807,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9711,7 +9823,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9725,7 +9837,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9751,7 +9863,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9770,7 +9882,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9785,7 +9897,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9800,7 +9912,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9816,7 +9928,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9851,8 +9963,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -9867,7 +9995,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9897,7 +10025,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9911,7 +10039,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9920,7 +10048,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9929,7 +10057,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9955,7 +10083,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -9969,7 +10097,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -9985,7 +10113,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10016,7 +10144,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10036,7 +10164,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -10092,7 +10220,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10107,7 +10235,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10124,7 +10252,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10151,7 +10279,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10166,7 +10294,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10183,7 +10311,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10207,7 +10335,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10216,7 +10344,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10231,7 +10359,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10275,7 +10403,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10290,7 +10418,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10307,7 +10435,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10334,7 +10462,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10349,7 +10477,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10366,7 +10494,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10390,7 +10518,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10399,7 +10527,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10414,7 +10542,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10458,7 +10586,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10473,7 +10601,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10493,7 +10621,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10508,7 +10636,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10525,7 +10653,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10552,7 +10680,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10567,7 +10695,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10576,7 +10704,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10620,7 +10748,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10635,7 +10763,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10652,7 +10780,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10679,7 +10807,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10694,7 +10822,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10711,7 +10839,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10735,7 +10863,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10744,7 +10872,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10759,7 +10887,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10768,7 +10896,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10785,7 +10913,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10814,7 +10942,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10835,7 +10963,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10855,7 +10983,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10872,7 +11000,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10892,7 +11020,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10909,7 +11037,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -10929,7 +11057,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -10946,7 +11074,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -10975,7 +11103,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10984,7 +11112,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -10998,7 +11126,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11017,7 +11145,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11036,7 +11164,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11053,7 +11181,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11070,7 +11198,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11086,7 +11214,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11100,7 +11228,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11126,7 +11254,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11145,7 +11273,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11160,7 +11288,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11175,7 +11303,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11191,7 +11319,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11226,8 +11354,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -11242,7 +11386,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11272,7 +11416,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11286,7 +11430,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11295,7 +11439,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11304,7 +11448,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11330,7 +11474,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11344,7 +11488,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11360,7 +11504,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11391,7 +11535,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11411,7 +11555,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -11467,7 +11611,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11482,7 +11626,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11499,7 +11643,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11526,7 +11670,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11541,7 +11685,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11558,7 +11702,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11582,7 +11726,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11591,7 +11735,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11606,7 +11750,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11650,7 +11794,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11665,7 +11809,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11682,7 +11826,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11709,7 +11853,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11724,7 +11868,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11741,7 +11885,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11765,7 +11909,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11774,7 +11918,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11789,7 +11933,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11833,7 +11977,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11848,7 +11992,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11868,7 +12012,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11883,7 +12027,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -11900,7 +12044,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11927,7 +12071,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -11942,7 +12086,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11951,7 +12095,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -11995,7 +12139,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12010,7 +12154,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12027,7 +12171,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12054,7 +12198,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12069,7 +12213,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12086,7 +12230,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12110,7 +12254,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12119,7 +12263,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12134,7 +12278,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12143,7 +12287,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12160,7 +12304,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12189,7 +12333,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12210,7 +12354,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12230,7 +12374,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12247,7 +12391,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12267,7 +12411,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12284,7 +12428,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -12304,7 +12448,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12321,7 +12465,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12350,7 +12494,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12359,7 +12503,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12373,7 +12517,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12392,7 +12536,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12411,7 +12555,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12428,7 +12572,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12445,7 +12589,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12461,7 +12605,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12475,7 +12619,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12501,7 +12645,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12520,7 +12664,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12535,7 +12679,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12550,7 +12694,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12566,7 +12710,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12601,8 +12745,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -12617,7 +12777,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12647,7 +12807,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12661,7 +12821,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12670,7 +12830,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12679,7 +12839,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12705,7 +12865,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12719,7 +12879,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12735,7 +12895,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12766,7 +12926,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12786,7 +12946,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -12842,7 +13002,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12857,7 +13017,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12874,7 +13034,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12901,7 +13061,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -12916,7 +13076,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12933,7 +13093,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12957,7 +13117,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -12966,7 +13126,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -12981,7 +13141,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13025,7 +13185,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13040,7 +13200,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13057,7 +13217,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13084,7 +13244,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13099,7 +13259,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13116,7 +13276,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13140,7 +13300,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13149,7 +13309,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13164,7 +13324,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13208,7 +13368,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13223,7 +13383,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13243,7 +13403,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13258,7 +13418,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13275,7 +13435,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13302,7 +13462,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13317,7 +13477,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13326,7 +13486,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13370,7 +13530,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13385,7 +13545,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13402,7 +13562,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13429,7 +13589,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13444,7 +13604,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13461,7 +13621,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13485,7 +13645,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13494,7 +13654,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13509,7 +13669,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13518,7 +13678,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13535,7 +13695,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13564,7 +13724,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13585,7 +13745,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13605,7 +13765,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13622,7 +13782,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13642,7 +13802,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13659,7 +13819,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -13679,7 +13839,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -13696,7 +13856,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13725,7 +13885,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13734,7 +13894,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13748,7 +13908,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13767,7 +13927,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13786,7 +13946,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13803,7 +13963,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13820,7 +13980,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13836,7 +13996,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13850,7 +14010,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13876,7 +14036,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13895,7 +14055,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13910,7 +14070,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13925,7 +14085,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -13941,7 +14101,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -13976,8 +14136,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -13992,7 +14168,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14022,7 +14198,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14036,7 +14212,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14045,7 +14221,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14054,7 +14230,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14080,7 +14256,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14094,7 +14270,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14110,7 +14286,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14141,7 +14317,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14161,7 +14337,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -14217,7 +14393,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14232,7 +14408,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14249,7 +14425,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14276,7 +14452,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14291,7 +14467,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14308,7 +14484,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14332,7 +14508,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14341,7 +14517,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14356,7 +14532,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14400,7 +14576,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14415,7 +14591,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14432,7 +14608,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14459,7 +14635,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14474,7 +14650,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14491,7 +14667,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14515,7 +14691,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14524,7 +14700,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14539,7 +14715,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14583,7 +14759,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14598,7 +14774,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14618,7 +14794,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14633,7 +14809,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14650,7 +14826,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14677,7 +14853,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14692,7 +14868,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14701,7 +14877,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14745,7 +14921,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14760,7 +14936,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14777,7 +14953,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14804,7 +14980,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14819,7 +14995,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14836,7 +15012,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14860,7 +15036,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14869,7 +15045,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14884,7 +15060,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14893,7 +15069,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -14910,7 +15086,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14939,7 +15115,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -14960,7 +15136,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -14989,7 +15165,7 @@ ], "entityKey": "providerType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15009,7 +15185,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15026,7 +15202,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15046,7 +15222,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15063,7 +15239,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -15083,7 +15259,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15100,7 +15276,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15129,7 +15305,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15138,7 +15314,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15152,7 +15328,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15171,7 +15347,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15190,7 +15366,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15207,7 +15383,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15224,7 +15400,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15240,7 +15416,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15254,7 +15430,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15280,7 +15456,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15299,7 +15475,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15314,7 +15490,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15329,7 +15505,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15345,7 +15521,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15380,8 +15556,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -15396,7 +15588,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15421,7 +15613,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15435,7 +15627,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15444,7 +15636,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15453,7 +15645,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15479,7 +15671,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15493,7 +15685,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15509,7 +15701,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15540,7 +15732,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15560,7 +15752,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -15616,7 +15808,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15631,7 +15823,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15648,7 +15840,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15675,7 +15867,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15690,7 +15882,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15707,7 +15899,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15731,7 +15923,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15740,7 +15932,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15755,7 +15947,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15799,7 +15991,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15814,7 +16006,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15831,7 +16023,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15858,7 +16050,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15873,7 +16065,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15890,7 +16082,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15914,7 +16106,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15923,7 +16115,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -15938,7 +16130,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -15982,7 +16174,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -15997,7 +16189,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16017,7 +16209,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16032,7 +16224,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16049,7 +16241,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16076,7 +16268,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16091,7 +16283,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16100,7 +16292,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16144,7 +16336,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16159,7 +16351,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16176,7 +16368,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16203,7 +16395,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16218,7 +16410,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16235,7 +16427,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16259,7 +16451,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16268,7 +16460,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16283,7 +16475,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16292,7 +16484,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16309,7 +16501,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16338,7 +16530,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16359,7 +16551,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16379,7 +16571,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16396,7 +16588,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16416,7 +16608,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16433,7 +16625,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -16453,7 +16645,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16470,7 +16662,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16499,7 +16691,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16508,7 +16700,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16522,7 +16714,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16541,7 +16733,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16560,7 +16752,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16577,7 +16769,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16594,7 +16786,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16610,7 +16802,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16624,7 +16816,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16650,7 +16842,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16669,7 +16861,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16684,7 +16876,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16699,7 +16891,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16715,7 +16907,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16750,8 +16942,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -16766,7 +16974,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16796,7 +17004,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16810,7 +17018,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16819,7 +17027,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16828,7 +17036,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16854,7 +17062,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16874,7 +17082,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -16893,7 +17101,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -16910,7 +17118,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -16924,7 +17132,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16940,7 +17148,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16971,7 +17179,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -16991,7 +17199,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -17047,7 +17255,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17062,7 +17270,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17079,7 +17287,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17106,7 +17314,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17121,7 +17329,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17138,7 +17346,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17162,7 +17370,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17171,7 +17379,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17186,7 +17394,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17230,7 +17438,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17245,7 +17453,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17262,7 +17470,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17289,7 +17497,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17304,7 +17512,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17321,7 +17529,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17345,7 +17553,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17354,7 +17562,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17369,7 +17577,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17413,7 +17621,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17428,7 +17636,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17448,7 +17656,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17463,7 +17671,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17480,7 +17688,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17507,7 +17715,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17522,7 +17730,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17531,7 +17739,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17575,7 +17783,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17590,7 +17798,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17607,7 +17815,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17634,7 +17842,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17649,7 +17857,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17666,7 +17874,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17690,7 +17898,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17699,7 +17907,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17714,7 +17922,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17723,7 +17931,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17740,7 +17948,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17769,7 +17977,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17790,7 +17998,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17810,7 +18018,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17827,7 +18035,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17847,7 +18055,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17864,7 +18072,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -17884,7 +18092,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -17901,7 +18109,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17930,7 +18138,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17939,7 +18147,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -17953,7 +18161,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17972,7 +18180,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -17991,7 +18199,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18008,7 +18216,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18025,7 +18233,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18041,7 +18249,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18055,7 +18263,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18081,7 +18289,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18100,7 +18308,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18115,7 +18323,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18130,7 +18338,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18146,7 +18354,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18181,8 +18389,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -18197,7 +18421,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18227,7 +18451,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18241,7 +18465,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18250,7 +18474,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18259,7 +18483,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18285,7 +18509,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18305,7 +18529,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -18324,7 +18548,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18341,7 +18565,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18358,7 +18582,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18372,7 +18596,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18388,7 +18612,7 @@ "entityKey": "optInToDeviceIdSharing", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18402,7 +18626,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18418,7 +18642,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18449,7 +18673,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18469,7 +18693,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -18525,7 +18749,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18540,7 +18764,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18557,7 +18781,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18584,7 +18808,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18599,7 +18823,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18616,7 +18840,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18640,7 +18864,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18649,7 +18873,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18664,7 +18888,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18708,7 +18932,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18723,7 +18947,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18740,7 +18964,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18767,7 +18991,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18782,7 +19006,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18799,7 +19023,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18823,7 +19047,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18832,7 +19056,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18847,7 +19071,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18891,7 +19115,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18906,7 +19130,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18926,7 +19150,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -18941,7 +19165,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -18958,7 +19182,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -18985,7 +19209,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19000,7 +19224,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19009,7 +19233,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19053,7 +19277,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19068,7 +19292,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19085,7 +19309,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19112,7 +19336,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19127,7 +19351,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19144,7 +19368,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19168,7 +19392,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19177,7 +19401,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19192,7 +19416,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19201,7 +19425,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19218,7 +19442,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19247,7 +19471,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19268,7 +19492,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19288,7 +19512,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19305,7 +19529,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19325,7 +19549,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19342,7 +19566,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -19362,7 +19586,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19379,7 +19603,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19408,7 +19632,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19417,7 +19641,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19431,7 +19655,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19450,7 +19674,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19469,7 +19693,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19486,7 +19710,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19503,7 +19727,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19519,7 +19743,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19533,7 +19757,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19559,7 +19783,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19576,7 +19800,7 @@ ], "entityKey": "userDomain", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19592,7 +19816,7 @@ ], "entityKey": "strictEnforcement", "booleanActions": 2, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19609,7 +19833,7 @@ ], "entityKey": "cloudName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19629,7 +19853,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19646,7 +19870,7 @@ ], "entityKey": "excludeList", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19666,7 +19890,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -19685,7 +19909,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19702,7 +19926,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19716,7 +19940,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19732,7 +19956,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19763,7 +19987,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19783,7 +20007,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -19839,7 +20063,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19854,7 +20078,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19871,7 +20095,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19898,7 +20122,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -19913,7 +20137,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19930,7 +20154,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19954,7 +20178,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -19963,7 +20187,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -19978,7 +20202,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20022,7 +20246,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20037,7 +20261,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20054,7 +20278,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20081,7 +20305,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20096,7 +20320,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20113,7 +20337,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20137,7 +20361,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20146,7 +20370,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20161,7 +20385,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20205,7 +20429,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20220,7 +20444,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20240,7 +20464,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20255,7 +20479,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20272,7 +20496,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20299,7 +20523,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20314,7 +20538,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20323,7 +20547,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20367,7 +20591,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20382,7 +20606,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20399,7 +20623,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20426,7 +20650,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20441,7 +20665,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20458,7 +20682,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20482,7 +20706,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20491,7 +20715,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20506,7 +20730,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20515,7 +20739,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20532,7 +20756,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20561,7 +20785,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20582,7 +20806,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20602,7 +20826,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20619,7 +20843,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20639,7 +20863,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20656,7 +20880,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -20676,7 +20900,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -20693,7 +20917,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20722,7 +20946,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20731,7 +20955,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20745,7 +20969,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20771,7 +20995,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20790,7 +21014,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20805,7 +21029,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20820,7 +21044,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20836,7 +21060,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20871,8 +21095,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -20887,7 +21127,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20917,7 +21157,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20931,7 +21171,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20940,7 +21180,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -20949,7 +21189,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -20969,7 +21209,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -20988,7 +21228,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21005,7 +21245,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21019,7 +21259,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21035,7 +21275,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21066,7 +21306,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21086,7 +21326,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -21142,7 +21382,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21157,7 +21397,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21174,7 +21414,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21201,7 +21441,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21216,7 +21456,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21233,7 +21473,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21257,7 +21497,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21266,7 +21506,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21281,7 +21521,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21325,7 +21565,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21340,7 +21580,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21357,7 +21597,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21384,7 +21624,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21399,7 +21639,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21416,7 +21656,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21440,7 +21680,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21449,7 +21689,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21464,7 +21704,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21508,7 +21748,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21523,7 +21763,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21543,7 +21783,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21558,7 +21798,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21575,7 +21815,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21602,7 +21842,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21617,7 +21857,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21626,7 +21866,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21670,7 +21910,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21685,7 +21925,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21702,7 +21942,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21729,7 +21969,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21744,7 +21984,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21761,7 +22001,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21785,7 +22025,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21794,7 +22034,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21809,7 +22049,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21818,7 +22058,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21835,7 +22075,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21864,7 +22104,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -21885,7 +22125,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21905,7 +22145,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21922,7 +22162,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -21942,7 +22182,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21959,7 +22199,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -21979,7 +22219,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -21996,7 +22236,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22025,7 +22265,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22034,7 +22274,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22048,7 +22288,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22067,7 +22307,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22086,7 +22326,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22103,7 +22343,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22120,7 +22360,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22136,7 +22376,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22150,7 +22390,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22176,7 +22416,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22195,7 +22435,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22210,7 +22450,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22225,7 +22465,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22241,7 +22481,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22267,7 +22507,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22281,7 +22521,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22322,7 +22562,7 @@ "entityKey": "tunnelConfiguration", "booleanActions": 0, "defaultValue": "wifiAndCellular", - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22348,7 +22588,7 @@ "entityKey": "userToggleEnabled", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22379,7 +22619,7 @@ "entityKey": "voicemailExceptionAction", "booleanActions": 0, "defaultValue": "forceTrafficViaVPN", - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22410,7 +22650,7 @@ "entityKey": "airPrintExceptionAction", "booleanActions": 0, "defaultValue": "forceTrafficViaVPN", - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22441,7 +22681,7 @@ "entityKey": "cellularExceptionAction", "booleanActions": 0, "defaultValue": "forceTrafficViaVPN", - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22486,7 +22726,7 @@ ], "entityKey": "apps", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -22501,7 +22741,7 @@ ], "entityKey": "allowedBundleIdentifiers", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22515,7 +22755,7 @@ ], "entityKey": "allowedCaptiveNetworkPlugins", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22524,7 +22764,7 @@ ], "booleanActions": 0, "defaultValue": 100, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22550,7 +22790,7 @@ "entityKey": "allowCaptiveWebSheet", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22567,7 +22807,7 @@ "entityKey": "natKeepAliveIntervalInSeconds", "booleanActions": 0, "defaultValue": 110, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22593,7 +22833,7 @@ "entityKey": "natKeepAliveOffloadEnable", "booleanActions": 0, "defaultValue": true, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22609,7 +22849,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22623,7 +22863,7 @@ ], "entityKey": "alwaysOnConfiguration", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22642,7 +22882,7 @@ "entityKey": "enableAlwaysOnConfiguration", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -22659,7 +22899,7 @@ ], "entityKey": "remoteIdentifier", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22689,7 +22929,7 @@ "entityKey": "localIdentifier", "booleanActions": 0, "defaultValue": "empty", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22705,7 +22945,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22753,7 +22993,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22768,7 +23008,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22783,7 +23023,7 @@ ], "entityKey": "enableEAP", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22818,16 +23058,49 @@ "entityKey": "serverCertificateType", "booleanActions": 0, "defaultValue": "rsa", - "policyType": 52, + "policyType": 53, "enabled": true } ], "enabled": true }, { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", + "nameResourceKey": "certificatesOption", + "value": "certificate", "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "selectCertificate", + "descriptionResourceKey": "authenticationCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 53, + "enabled": true + }, { "value": true, "dataType": 9, @@ -22840,7 +23113,42 @@ ], "entityKey": "enableEAP", "booleanActions": 0, - "policyType": 52, + "policyType": 53, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "certificateTypeName", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "rSA", + "value": "rsa", + "enabled": true + }, + { + "nameResourceKey": "eCDSA256", + "value": "ecdsa256", + "enabled": true + }, + { + "nameResourceKey": "eCDSA384", + "value": "ecdsa384", + "enabled": true + }, + { + "nameResourceKey": "eCDSA521", + "value": "ecdsa521", + "enabled": true + } + ], + "entityKey": "serverCertificateType", + "booleanActions": 0, + "defaultValue": "rsa", + "policyType": 53, "enabled": true } ], @@ -22849,7 +23157,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22891,7 +23199,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -22906,7 +23214,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22921,7 +23229,7 @@ ], "entityKey": "enableEAP", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22956,7 +23264,97 @@ "entityKey": "serverCertificateType", "booleanActions": 0, "defaultValue": "rsa", - "policyType": 52, + "policyType": 53, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "selectCertificate", + "descriptionResourceKey": "authenticationCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 53, + "enabled": true + }, + { + "value": false, + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "enableEAP", + "booleanActions": 0, + "policyType": 53, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "certificateTypeName", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "rSA", + "value": "rsa", + "enabled": true + }, + { + "nameResourceKey": "eCDSA256", + "value": "ecdsa256", + "enabled": true + }, + { + "nameResourceKey": "eCDSA384", + "value": "ecdsa384", + "enabled": true + }, + { + "nameResourceKey": "eCDSA521", + "value": "ecdsa521", + "enabled": true + } + ], + "entityKey": "serverCertificateType", + "booleanActions": 0, + "defaultValue": "rsa", + "policyType": 53, "enabled": true } ], @@ -22978,7 +23376,7 @@ ], "entityKey": "enableEAP", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -22993,7 +23391,7 @@ ], "entityKey": "sharedSecret", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23002,7 +23400,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23012,7 +23410,7 @@ "entityKey": "clientAuthenticationType", "booleanActions": 0, "defaultValue": "userAuthentication", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23028,7 +23426,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23043,7 +23441,7 @@ ], "entityKey": "serverCertificateIssuerCommonName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23059,7 +23457,7 @@ ], "entityKey": "serverCertificateCommonName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23075,7 +23473,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23115,7 +23513,7 @@ "entityKey": "deadPeerDetectionRate", "booleanActions": 0, "defaultValue": "medium", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23131,7 +23529,7 @@ ], "entityKey": "tlsMinimumVersion", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23147,7 +23545,7 @@ ], "entityKey": "tlsMaximumVersion", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23171,7 +23569,7 @@ ], "entityKey": "enablePerfectForwardSecrecy", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23196,7 +23594,7 @@ ], "entityKey": "enableCertificateRevocationCheck", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23220,7 +23618,7 @@ ], "entityKey": "enableUseInternalSubnetAttributes", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23245,7 +23643,7 @@ "entityKey": "disableMobilityAndMultihoming", "booleanActions": 0, "defaultValue": true, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23271,7 +23669,7 @@ "entityKey": "disableRedirect", "booleanActions": 0, "defaultValue": true, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23288,7 +23686,7 @@ "entityKey": "mtuSizeInBytes", "booleanActions": 0, "defaultValue": "Not configured", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23304,7 +23702,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23351,7 +23749,7 @@ "entityKey": "securityEncryptionAlgorithm", "booleanActions": 0, "defaultValue": "aes256", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23391,7 +23789,7 @@ "entityKey": "securityIntegrityAlgorithm", "booleanActions": 0, "defaultValue": "sha2_256", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23461,7 +23859,7 @@ "entityKey": "securityDiffieHellmanGroup", "booleanActions": 0, "defaultValue": 2, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23478,7 +23876,7 @@ "entityKey": "lifetimeInMinutes", "booleanActions": 0, "defaultValue": 1440, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23493,7 +23891,7 @@ ], "entityKey": "securityAssociationParameters", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23508,7 +23906,7 @@ ], "entityKey": "allowDefaultSecurityAssociationParameters", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23524,7 +23922,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23571,7 +23969,7 @@ "entityKey": "securityEncryptionAlgorithm", "booleanActions": 0, "defaultValue": "aes256", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23611,7 +24009,7 @@ "entityKey": "securityIntegrityAlgorithm", "booleanActions": 0, "defaultValue": "sha2_256", - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23681,7 +24079,7 @@ "entityKey": "securityDiffieHellmanGroup", "booleanActions": 0, "defaultValue": 2, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23698,7 +24096,7 @@ "entityKey": "lifetimeInMinutes", "booleanActions": 0, "defaultValue": 1440, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23713,7 +24111,7 @@ ], "entityKey": "childSecurityAssociationParameters", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23728,7 +24126,7 @@ ], "entityKey": "allowDefaultChildSecurityAssociationParameters", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23742,7 +24140,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23758,7 +24156,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23789,7 +24187,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23809,7 +24207,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -23865,7 +24263,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -23880,7 +24278,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23897,7 +24295,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23924,7 +24322,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -23939,7 +24337,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -23956,7 +24354,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23980,7 +24378,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -23989,7 +24387,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24004,7 +24402,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24048,7 +24446,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24063,7 +24461,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24080,7 +24478,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24107,7 +24505,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24122,7 +24520,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24139,7 +24537,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24163,7 +24561,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24172,7 +24570,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24187,7 +24585,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24231,7 +24629,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24246,7 +24644,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24266,7 +24664,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24281,7 +24679,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24298,7 +24696,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24325,7 +24723,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24340,7 +24738,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24349,7 +24747,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24393,7 +24791,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24408,7 +24806,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24425,7 +24823,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24452,7 +24850,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24467,7 +24865,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24484,7 +24882,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24508,7 +24906,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24517,7 +24915,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24532,7 +24930,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24541,7 +24939,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24558,7 +24956,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24587,7 +24985,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24596,7 +24994,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24610,7 +25008,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24629,7 +25027,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24648,7 +25046,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24665,7 +25063,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24682,7 +25080,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24698,7 +25096,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24712,14 +25110,14 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], "enabled": true }, { - "nameResourceKey": "microsoftProtectOption", + "nameResourceKey": "microsoftProtectPreviewOption", "value": "microsoftProtect", "children": [ { @@ -24738,7 +25136,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24757,7 +25155,7 @@ ], "entityKey": "microsoftTunnelSiteId", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24773,7 +25171,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24789,7 +25187,7 @@ ], "entityKey": "disconnectOnIdle", "booleanActions": 2, - "policyType": 52, + "policyType": 53, "enabled": false } ], @@ -24803,7 +25201,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24825,7 +25223,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24839,7 +25237,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24859,7 +25257,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24876,7 +25274,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24896,7 +25294,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24913,7 +25311,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -24933,7 +25331,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -24950,7 +25348,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24960,7 +25358,7 @@ "entityKey": "enablePerApp", "booleanActions": 2, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -24974,7 +25372,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -24990,7 +25388,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25010,7 +25408,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -25066,7 +25464,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25081,7 +25479,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25098,7 +25496,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25125,7 +25523,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25140,7 +25538,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25157,7 +25555,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25181,7 +25579,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25190,7 +25588,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25205,7 +25603,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25249,7 +25647,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25264,7 +25662,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25281,7 +25679,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25308,7 +25706,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25323,7 +25721,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25340,7 +25738,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25364,7 +25762,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25373,7 +25771,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25388,7 +25786,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25432,7 +25830,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25447,7 +25845,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25467,7 +25865,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25482,7 +25880,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25499,7 +25897,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25526,7 +25924,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25541,7 +25939,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25550,7 +25948,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25594,7 +25992,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25609,7 +26007,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25626,7 +26024,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25653,7 +26051,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25668,7 +26066,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25685,7 +26083,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25709,7 +26107,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25718,7 +26116,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25733,7 +26131,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25742,7 +26140,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -25759,7 +26157,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25788,7 +26186,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25802,7 +26200,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25821,7 +26219,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25840,7 +26238,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25857,7 +26255,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25874,7 +26272,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25890,7 +26288,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25904,8 +26302,80 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "keyColumn", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "vPNCustomKeyExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "key", + "booleanActions": 0, + "policyType": 53, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "valueColumn", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "vPNCustomValueExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "value", + "booleanActions": 0, + "policyType": 53, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "VPNCustomDataDescription", + "descriptionResourceKey": "createAttributes", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customData", + "booleanActions": 0, + "policyType": 53, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "CustomSettingsSummaryTitle", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "enabled": false @@ -25930,7 +26400,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25949,7 +26419,7 @@ ], "entityKey": "microsoftTunnelSiteId", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -25965,7 +26435,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -25981,7 +26451,7 @@ ], "entityKey": "disconnectOnIdle", "booleanActions": 2, - "policyType": 52, + "policyType": 53, "enabled": false } ], @@ -25995,7 +26465,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26017,7 +26487,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26037,7 +26507,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26054,7 +26524,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26074,7 +26544,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26091,7 +26561,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -26111,7 +26581,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26128,7 +26598,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26138,7 +26608,7 @@ "entityKey": "enablePerApp", "booleanActions": 2, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26152,7 +26622,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26168,7 +26638,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26188,7 +26658,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -26244,7 +26714,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26259,7 +26729,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26276,7 +26746,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26303,7 +26773,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26318,7 +26788,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26335,7 +26805,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26359,7 +26829,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26368,7 +26838,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26383,7 +26853,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26427,7 +26897,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26442,7 +26912,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26459,7 +26929,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26486,7 +26956,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26501,7 +26971,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26518,7 +26988,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26542,7 +27012,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26551,7 +27021,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26566,7 +27036,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26610,7 +27080,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26625,7 +27095,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26645,7 +27115,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26660,7 +27130,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26677,7 +27147,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26704,7 +27174,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26719,7 +27189,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26728,7 +27198,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26772,7 +27242,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26787,7 +27257,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26804,7 +27274,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26831,7 +27301,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26846,7 +27316,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26863,7 +27333,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26887,7 +27357,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26896,7 +27366,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26911,7 +27381,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26920,7 +27390,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -26937,7 +27407,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26966,7 +27436,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -26980,7 +27450,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -26999,7 +27469,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27018,7 +27488,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27035,7 +27505,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27052,7 +27522,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27068,7 +27538,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27082,7 +27552,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27108,7 +27578,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27127,7 +27597,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27142,7 +27612,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27157,7 +27627,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27173,7 +27643,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27208,8 +27678,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 52, - "enabled": true + "policyType": 53, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 53, + "enabled": false } ], "dataType": 5, @@ -27224,7 +27710,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27254,7 +27740,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27268,7 +27754,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27277,7 +27763,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27286,7 +27772,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27312,7 +27798,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27329,7 +27815,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27349,7 +27835,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -27368,7 +27854,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27385,7 +27871,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27399,7 +27885,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27415,7 +27901,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27446,7 +27932,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27466,7 +27952,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } }, @@ -27522,7 +28008,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27537,7 +28023,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27554,7 +28040,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27581,7 +28067,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27596,7 +28082,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27613,7 +28099,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27637,7 +28123,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27646,7 +28132,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27661,7 +28147,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27705,7 +28191,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27720,7 +28206,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27737,7 +28223,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27764,7 +28250,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27779,7 +28265,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27796,7 +28282,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27820,7 +28306,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27829,7 +28315,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27844,7 +28330,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27888,7 +28374,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27903,7 +28389,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27923,7 +28409,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27938,7 +28424,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -27955,7 +28441,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -27982,7 +28468,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -27997,7 +28483,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28006,7 +28492,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28050,7 +28536,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28065,7 +28551,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28082,7 +28568,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28109,7 +28595,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28124,7 +28610,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28141,7 +28627,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28165,7 +28651,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28174,7 +28660,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28189,7 +28675,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28198,7 +28684,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28215,7 +28701,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28244,7 +28730,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28265,7 +28751,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28294,7 +28780,7 @@ ], "entityKey": "providerType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28314,7 +28800,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28331,7 +28817,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28351,7 +28837,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28368,7 +28854,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": false }, { @@ -28388,7 +28874,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } @@ -28405,7 +28891,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28434,7 +28920,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28443,7 +28929,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28457,7 +28943,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28476,7 +28962,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28495,7 +28981,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28512,7 +28998,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true }, { @@ -28529,7 +29015,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28545,7 +29031,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28559,7 +29045,7 @@ ], "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } ], @@ -28568,7 +29054,7 @@ ], "entityKey": "connectionType", "booleanActions": 0, - "policyType": 52, + "policyType": 53, "enabled": true } } diff --git a/Documentation/ObjectInfo/vpn_macvpn.json b/Documentation/ObjectInfo/vpn_macvpn.json index 14ed397..d283408 100644 --- a/Documentation/ObjectInfo/vpn_macvpn.json +++ b/Documentation/ObjectInfo/vpn_macvpn.json @@ -14,7 +14,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -48,7 +48,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -63,7 +63,7 @@ ], "entityKey": "isDefaultServer", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -79,7 +79,7 @@ ], "entityKey": "server", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -114,8 +114,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 65, - "enabled": true + "policyType": 66, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 66, + "enabled": false } ], "dataType": 5, @@ -130,7 +146,7 @@ ], "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -144,7 +160,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -187,7 +203,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -220,7 +236,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -253,7 +269,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -286,7 +302,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -313,7 +329,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } }, @@ -332,7 +348,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -349,7 +365,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -373,7 +389,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -393,7 +409,7 @@ ], "entityKey": "key", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } }, @@ -412,7 +428,7 @@ ], "entityKey": "value", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -429,7 +445,7 @@ ], "entityKey": "customData", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -455,7 +471,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -464,7 +480,7 @@ ], "entityKey": "connectionType", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpn_windows10vpn.json b/Documentation/ObjectInfo/vpn_windows10vpn.json index fb09d38..d9b81aa 100644 --- a/Documentation/ObjectInfo/vpn_windows10vpn.json +++ b/Documentation/ObjectInfo/vpn_windows10vpn.json @@ -14,7 +14,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -34,7 +34,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -53,7 +53,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -81,7 +81,7 @@ "entityKey": "isDefaultServer", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -98,7 +98,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -124,7 +124,7 @@ "entityKey": "enableDnsRegistration", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -167,7 +167,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -202,8 +202,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -218,7 +234,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -237,7 +253,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -253,7 +269,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -269,7 +285,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -302,7 +318,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -337,8 +353,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -353,7 +385,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -372,7 +404,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -388,7 +420,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -404,7 +436,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -437,7 +469,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -472,8 +504,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -488,7 +536,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -507,7 +555,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -523,7 +571,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -539,7 +587,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -572,7 +620,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -607,8 +655,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -623,7 +687,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -642,7 +706,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -658,7 +722,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -674,7 +738,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -707,7 +771,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -742,8 +806,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -758,7 +838,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -777,7 +857,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -793,7 +873,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -809,7 +889,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -842,7 +922,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -877,8 +957,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -893,7 +989,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -912,7 +1008,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -928,7 +1024,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -944,7 +1040,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -977,7 +1073,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1012,8 +1108,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -1028,7 +1140,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1047,7 +1159,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1063,7 +1175,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1079,7 +1191,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1112,7 +1224,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1128,7 +1240,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1163,7 +1275,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1179,7 +1291,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1193,7 +1305,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1208,7 +1320,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1226,7 +1338,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1242,7 +1354,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1258,7 +1370,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1291,7 +1403,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1307,7 +1419,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1342,7 +1454,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1358,7 +1470,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1374,7 +1486,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1399,7 +1511,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1415,7 +1527,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1438,7 +1550,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1447,7 +1559,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1473,7 +1585,7 @@ "entityKey": "enableDeviceTunnel", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1491,7 +1603,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1545,7 +1657,7 @@ ], "entityKey": "encryptionMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1584,7 +1696,7 @@ ], "entityKey": "integrityCheckMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1633,7 +1745,7 @@ ], "entityKey": "dhGroup", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1649,7 +1761,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1708,7 +1820,7 @@ ], "entityKey": "cipherTransformConstants", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1757,7 +1869,7 @@ ], "entityKey": "authenticationTransformConstants", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1811,7 +1923,7 @@ ], "entityKey": "pfsGroup", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false } ], @@ -1825,7 +1937,7 @@ ], "entityKey": "cryptographySuite", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1858,7 +1970,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1874,7 +1986,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -1909,7 +2021,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1925,7 +2037,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1939,7 +2051,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1954,7 +2066,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -1972,7 +2084,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -1988,7 +2100,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -2004,7 +2116,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2037,7 +2149,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2053,7 +2165,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2088,7 +2200,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2104,7 +2216,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2118,7 +2230,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -2133,7 +2245,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -2151,7 +2263,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2167,7 +2279,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -2183,7 +2295,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2193,7 +2305,7 @@ "entityKey": "connectionType", "booleanActions": 0, "unconfiguredValue": "selectAConnectionType", - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -2249,7 +2361,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2284,8 +2396,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2300,7 +2428,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2319,7 +2447,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2335,7 +2463,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2351,7 +2479,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2384,7 +2512,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2419,8 +2547,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2435,7 +2579,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2454,7 +2598,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2470,7 +2614,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2486,7 +2630,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2519,7 +2663,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2554,8 +2698,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2570,7 +2730,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2589,7 +2749,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2605,7 +2765,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2621,7 +2781,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2654,7 +2814,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2689,8 +2849,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2705,7 +2881,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2724,7 +2900,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2740,7 +2916,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2756,7 +2932,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2789,7 +2965,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2824,8 +3000,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2840,7 +3032,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2859,7 +3051,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2875,7 +3067,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2891,7 +3083,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2924,7 +3116,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -2959,8 +3151,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -2975,7 +3183,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -2994,7 +3202,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3010,7 +3218,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3026,7 +3234,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3059,7 +3267,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3094,8 +3302,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, - "enabled": true + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false } ], "dataType": 5, @@ -3110,7 +3334,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3129,7 +3353,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3145,7 +3369,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3161,7 +3385,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3194,7 +3418,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3210,7 +3434,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3245,7 +3469,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3261,7 +3485,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3275,7 +3499,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3290,7 +3514,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3308,7 +3532,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3324,7 +3548,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3340,7 +3564,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3373,7 +3597,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3389,7 +3613,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3424,7 +3648,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3440,7 +3664,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3456,7 +3680,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3481,7 +3705,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3497,7 +3721,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3520,7 +3744,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3529,7 +3753,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3555,7 +3779,7 @@ "entityKey": "enableDeviceTunnel", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3573,7 +3797,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3627,7 +3851,7 @@ ], "entityKey": "encryptionMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3666,7 +3890,7 @@ ], "entityKey": "integrityCheckMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3715,7 +3939,7 @@ ], "entityKey": "dhGroup", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3731,7 +3955,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3790,7 +4014,7 @@ ], "entityKey": "cipherTransformConstants", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3839,7 +4063,7 @@ ], "entityKey": "authenticationTransformConstants", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -3893,7 +4117,7 @@ ], "entityKey": "pfsGroup", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false } ], @@ -3907,7 +4131,7 @@ ], "entityKey": "cryptographySuite", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -3940,7 +4164,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3956,7 +4180,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -3991,7 +4215,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4007,7 +4231,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4021,7 +4245,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4036,7 +4260,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4054,7 +4278,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4070,7 +4294,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4086,7 +4310,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4119,7 +4343,7 @@ "entityKey": "enableAlwaysOn", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4135,7 +4359,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4170,7 +4394,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4186,7 +4410,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4200,7 +4424,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4215,7 +4439,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4233,7 +4457,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4249,7 +4473,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4265,7 +4489,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4275,7 +4499,7 @@ "entityKey": "connectionType", "booleanActions": 0, "unconfiguredValue": "selectAConnectionType", - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4297,7 +4521,7 @@ ], "entityKey": "connectionType", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4312,7 +4536,7 @@ ], "entityKey": "enableDeviceTunnel", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4327,7 +4551,7 @@ ], "entityKey": "enableAlwaysOn", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4342,7 +4566,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4357,7 +4581,7 @@ ], "entityKey": "eapXml", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -4375,7 +4599,7 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4391,7 +4615,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4401,7 +4625,7 @@ "entityKey": "profileTarget", "booleanActions": 0, "defaultValue": "user", - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -4427,7 +4651,7 @@ ], "entityKey": "destinationPrefix", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -4445,7 +4669,7 @@ ], "entityKey": "prefixSize", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -4462,7 +4686,7 @@ ], "entityKey": "routes", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -4480,7 +4704,7 @@ ], "entityKey": "enableSplitTunneling", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": false } ] diff --git a/Documentation/ObjectInfo/vpn_windows10xvpn.json b/Documentation/ObjectInfo/vpn_windows10xvpn.json index 0dd2506..9b2bf0a 100644 --- a/Documentation/ObjectInfo/vpn_windows10xvpn.json +++ b/Documentation/ObjectInfo/vpn_windows10xvpn.json @@ -15,7 +15,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 110, + "policyType": 111, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "authenticationCertificateId", "booleanActions": 0, - "policyType": 110, + "policyType": 111, "enabled": true } ], @@ -49,7 +49,7 @@ ], "booleanActions": 0, - "policyType": 110, + "policyType": 111, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpn_windows8vpn.json b/Documentation/ObjectInfo/vpn_windows8vpn.json index c5e439b..e4f9f16 100644 --- a/Documentation/ObjectInfo/vpn_windows8vpn.json +++ b/Documentation/ObjectInfo/vpn_windows8vpn.json @@ -14,7 +14,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -34,7 +34,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } }, @@ -53,7 +53,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } }, @@ -81,7 +81,7 @@ "entityKey": "isDefaultServer", "booleanActions": 0, "defaultValue": false, - "policyType": 94, + "policyType": 95, "enabled": true } } @@ -98,7 +98,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -136,7 +136,7 @@ ], "entityKey": "loginGroupOrDomain", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } ], @@ -155,7 +155,7 @@ ], "entityKey": "connectionType", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -171,7 +171,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -196,7 +196,7 @@ ], "entityKey": "enableSplitTunneling", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpn_windowsphonevpn.json b/Documentation/ObjectInfo/vpn_windowsphonevpn.json index 8f1333e..328c927 100644 --- a/Documentation/ObjectInfo/vpn_windowsphonevpn.json +++ b/Documentation/ObjectInfo/vpn_windowsphonevpn.json @@ -14,7 +14,7 @@ ], "entityKey": "connectionName", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -49,8 +49,24 @@ ], "entityKey": "identityCertificate", "booleanActions": 0, - "policyType": 104, - "enabled": true + "policyType": 105, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 105, + "enabled": false } ], "dataType": 5, @@ -65,7 +81,7 @@ ], "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } ], @@ -84,7 +100,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -100,7 +116,7 @@ ], "entityKey": "rememberUserCredentials", "booleanActions": 2, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -120,7 +136,7 @@ ], "entityKey": "description", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } }, @@ -139,7 +155,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } }, @@ -167,7 +183,7 @@ "entityKey": "isDefaultServer", "booleanActions": 0, "defaultValue": false, - "policyType": 104, + "policyType": 105, "enabled": true } } @@ -184,7 +200,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -210,7 +226,7 @@ "entityKey": "bypassVpnOnCompanyWifi", "booleanActions": 0, "defaultValue": false, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -236,7 +252,7 @@ "entityKey": "bypassVpnOnHomeWifi", "booleanActions": 0, "defaultValue": false, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -274,7 +290,7 @@ ], "entityKey": "loginGroupOrDomain", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } ], @@ -293,7 +309,7 @@ ], "entityKey": "connectionType", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -312,7 +328,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } } @@ -329,7 +345,7 @@ ], "entityKey": "dnsSuffixSearchList", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -345,7 +361,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -371,7 +387,7 @@ "entityKey": "enableSplitTunneling", "booleanActions": 0, "defaultValue": false, - "policyType": 104, + "policyType": 105, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnapps_macvpn.json b/Documentation/ObjectInfo/vpnapps_macvpn.json index 41c41c1..54aca3e 100644 --- a/Documentation/ObjectInfo/vpnapps_macvpn.json +++ b/Documentation/ObjectInfo/vpnapps_macvpn.json @@ -11,7 +11,7 @@ ], "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -42,7 +42,7 @@ ], "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -62,7 +62,7 @@ ], "entityKey": "notYetInGraph", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } }, @@ -118,7 +118,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -133,7 +133,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -150,7 +150,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -177,7 +177,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -192,7 +192,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -209,7 +209,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -233,7 +233,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -242,7 +242,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -257,7 +257,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -301,7 +301,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -316,7 +316,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -333,7 +333,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -360,7 +360,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -375,7 +375,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -392,7 +392,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -416,7 +416,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -425,7 +425,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -440,7 +440,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -484,7 +484,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -499,7 +499,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -519,7 +519,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -534,7 +534,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -551,7 +551,7 @@ ], "entityKey": "probeRequiredUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -578,7 +578,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -593,7 +593,7 @@ ], "entityKey": "domains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -602,7 +602,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -646,7 +646,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -661,7 +661,7 @@ ], "entityKey": "ssids", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -678,7 +678,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -705,7 +705,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -720,7 +720,7 @@ ], "entityKey": "dnsSearchDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -737,7 +737,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -761,7 +761,7 @@ ], "entityKey": "probeUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -770,7 +770,7 @@ ], "entityKey": "conditionType", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -785,7 +785,7 @@ ], "entityKey": "domainAction", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -794,7 +794,7 @@ ], "entityKey": "action", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -811,7 +811,7 @@ ], "entityKey": "onDemandRules", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -840,7 +840,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -861,7 +861,7 @@ ], "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -881,7 +881,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -898,7 +898,7 @@ ], "entityKey": "safariDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -918,7 +918,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -935,7 +935,7 @@ ], "entityKey": "associatedDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": false }, { @@ -955,7 +955,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } } @@ -972,7 +972,7 @@ ], "entityKey": "excludedDomains", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -1001,7 +1001,7 @@ ], "entityKey": "disableOnDemandUserOverride", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -1010,7 +1010,7 @@ ], "entityKey": "enablePerApp", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnappsandtrafficrules_windows10vpn.json b/Documentation/ObjectInfo/vpnappsandtrafficrules_windows10vpn.json index bbc1f04..b6e63be 100644 --- a/Documentation/ObjectInfo/vpnappsandtrafficrules_windows10vpn.json +++ b/Documentation/ObjectInfo/vpnappsandtrafficrules_windows10vpn.json @@ -31,7 +31,7 @@ ], "entityKey": "windowsInformationProtectionDomain", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -63,7 +63,7 @@ ], "entityKey": "identifier", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -94,7 +94,7 @@ ], "entityKey": "appType", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -112,7 +112,7 @@ "entityKey": "associatedApps", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -131,7 +131,7 @@ "entityKey": "onlyAssociatedAppsCanUseConnection", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -142,7 +142,7 @@ "booleanActions": 0, "defaultValue": 0, "unconfiguredValue": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -161,7 +161,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -194,7 +194,7 @@ "entityKey": "routingPolicyType", "booleanActions": 0, "defaultValue": "none", - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -222,7 +222,7 @@ ], "entityKey": "lowerNumber", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -241,7 +241,7 @@ ], "entityKey": "upperNumber", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -258,7 +258,7 @@ ], "entityKey": "localPortRanges", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -278,7 +278,7 @@ ], "entityKey": "lowerNumber", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -297,7 +297,7 @@ ], "entityKey": "upperNumber", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -314,7 +314,7 @@ ], "entityKey": "remotePortRanges", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -323,7 +323,7 @@ ], "entityKey": "protocols", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -341,7 +341,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -368,7 +368,7 @@ ], "entityKey": "appType", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -390,7 +390,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -409,7 +409,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -426,7 +426,7 @@ ], "entityKey": "localAddressRanges", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -448,7 +448,7 @@ ], "entityKey": "lowerAddress", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -467,7 +467,7 @@ ], "entityKey": "upperAddress", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -484,7 +484,7 @@ ], "entityKey": "remoteAddressRanges", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -502,7 +502,7 @@ "entityKey": "trafficRules", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnconditionalaccess_windows10vpn.json b/Documentation/ObjectInfo/vpnconditionalaccess_windows10vpn.json index 1889516..44ecaf5 100644 --- a/Documentation/ObjectInfo/vpnconditionalaccess_windows10vpn.json +++ b/Documentation/ObjectInfo/vpnconditionalaccess_windows10vpn.json @@ -26,7 +26,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -42,7 +42,7 @@ ], "entityKey": "objectIdentifier", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -58,7 +58,7 @@ ], "entityKey": "singleSignOnEku", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -74,7 +74,7 @@ ], "entityKey": "singleSignOnIssuerHash", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -92,7 +92,7 @@ ], "entityKey": "enableSingleSignOnWithAlternateCertificate", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -110,7 +110,7 @@ ], "entityKey": "enableConditionalAccess", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } diff --git a/Documentation/ObjectInfo/vpndnstriggers_windows10vpn.json b/Documentation/ObjectInfo/vpndnstriggers_windows10vpn.json index d6259ea..68a9ce8 100644 --- a/Documentation/ObjectInfo/vpndnstriggers_windows10vpn.json +++ b/Documentation/ObjectInfo/vpndnstriggers_windows10vpn.json @@ -17,7 +17,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -34,7 +34,7 @@ ], "entityKey": "dnsSuffixes", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -54,7 +54,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -76,7 +76,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -93,7 +93,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -112,7 +112,7 @@ ], "entityKey": "proxyServerUri", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -140,7 +140,7 @@ "entityKey": "autoTrigger", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -168,7 +168,7 @@ "entityKey": "persistent", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -186,7 +186,7 @@ "entityKey": "dnsRules", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -205,7 +205,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -224,7 +224,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -242,7 +242,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -264,7 +264,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -281,7 +281,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -300,7 +300,7 @@ ], "entityKey": "proxyServerUri", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -318,7 +318,7 @@ "entityKey": "dnsRules", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": false }, { @@ -338,7 +338,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -356,7 +356,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -378,7 +378,7 @@ ], "entityKey": "unusedForSingleItems", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -395,7 +395,7 @@ ], "entityKey": "servers", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -413,7 +413,7 @@ ], "entityKey": "proxyServerUri", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -431,7 +431,7 @@ "entityKey": "dnsRules", "booleanActions": 0, "defaultValue": false, - "policyType": 88, + "policyType": 89, "enabled": false } ] diff --git a/Documentation/ObjectInfo/vpnproxy_macvpn.json b/Documentation/ObjectInfo/vpnproxy_macvpn.json index 68178c2..6ebb1ad 100644 --- a/Documentation/ObjectInfo/vpnproxy_macvpn.json +++ b/Documentation/ObjectInfo/vpnproxy_macvpn.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -50,7 +50,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true }, { @@ -67,7 +67,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ], @@ -83,7 +83,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 65, + "policyType": 66, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnproxy_windows10vpn.json b/Documentation/ObjectInfo/vpnproxy_windows10vpn.json index a1c78dc..c960596 100644 --- a/Documentation/ObjectInfo/vpnproxy_windows10vpn.json +++ b/Documentation/ObjectInfo/vpnproxy_windows10vpn.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -50,7 +50,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -67,7 +67,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true }, { @@ -96,7 +96,7 @@ ], "entityKey": "bypassProxyServerForLocalAddress", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -112,7 +112,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnproxy_windows8vpn.json b/Documentation/ObjectInfo/vpnproxy_windows8vpn.json index 5e28e96..ab9c014 100644 --- a/Documentation/ObjectInfo/vpnproxy_windows8vpn.json +++ b/Documentation/ObjectInfo/vpnproxy_windows8vpn.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -50,7 +50,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -67,7 +67,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -96,7 +96,7 @@ ], "entityKey": "automaticallyDetectProxySettings", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true }, { @@ -125,7 +125,7 @@ ], "entityKey": "bypassProxyServerForLocalAddress", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } ], @@ -141,7 +141,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 94, + "policyType": 95, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnproxy_windowsphonevpn.json b/Documentation/ObjectInfo/vpnproxy_windowsphonevpn.json index 810a495..8a41c3c 100644 --- a/Documentation/ObjectInfo/vpnproxy_windowsphonevpn.json +++ b/Documentation/ObjectInfo/vpnproxy_windowsphonevpn.json @@ -14,7 +14,7 @@ ], "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "automaticConfigurationScriptUrl", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -50,7 +50,7 @@ ], "entityKey": "address", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -67,7 +67,7 @@ ], "entityKey": "port", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -96,7 +96,7 @@ ], "entityKey": "automaticallyDetectProxySettings", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true }, { @@ -125,7 +125,7 @@ ], "entityKey": "bypassProxyServerForLocalAddress", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } ], @@ -141,7 +141,7 @@ ], "entityKey": "proxyServer", "booleanActions": 0, - "policyType": 104, + "policyType": 105, "enabled": true } ] diff --git a/Documentation/ObjectInfo/vpnsplittunneling_windows10vpn.json b/Documentation/ObjectInfo/vpnsplittunneling_windows10vpn.json index 2937d5e..9da88c5 100644 --- a/Documentation/ObjectInfo/vpnsplittunneling_windows10vpn.json +++ b/Documentation/ObjectInfo/vpnsplittunneling_windows10vpn.json @@ -22,7 +22,7 @@ ], "entityKey": "destinationPrefix", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } }, @@ -40,7 +40,7 @@ ], "entityKey": "prefixSize", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -57,7 +57,7 @@ ], "entityKey": "routes", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } ], @@ -75,7 +75,7 @@ ], "entityKey": "enableSplitTunneling", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } diff --git a/Documentation/ObjectInfo/vpntrustednetwork_windows10vpn.json b/Documentation/ObjectInfo/vpntrustednetwork_windows10vpn.json index 2f447b6..ba2dc34 100644 --- a/Documentation/ObjectInfo/vpntrustednetwork_windows10vpn.json +++ b/Documentation/ObjectInfo/vpntrustednetwork_windows10vpn.json @@ -16,7 +16,7 @@ ], "entityKey": "trustedNetworkDomains", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } @@ -33,7 +33,7 @@ ], "entityKey": "trustedNetworkDomains", "booleanActions": 0, - "policyType": 88, + "policyType": 89, "enabled": true } } diff --git a/Documentation/ObjectInfo/webcontentfilter_iosdevicefeatures.json b/Documentation/ObjectInfo/webcontentfilter_iosdevicefeatures.json index 6f15922..9689e90 100644 --- a/Documentation/ObjectInfo/webcontentfilter_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/webcontentfilter_iosdevicefeatures.json @@ -3,7 +3,7 @@ "isSettingDescription": false, "showAsSectionHeader": true, "dataType": 8, - "category": 130, + "category": 131, "nameResourceKey": "automatedDeviceEnrollmentHeaderName", "descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription", "childSettings": [ @@ -11,7 +11,7 @@ "complexOptions": [ { "dataType": 16, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeName", "descriptionResourceKey": "webContentFilterTypeDescription", "childSettings": [ @@ -30,7 +30,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeConfigureUrlsHeaderName", "descriptionResourceKey": "empty", "childSettings": [ @@ -40,7 +40,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -48,7 +48,7 @@ { "metadata": { "dataType": 20, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypePermittedUrlsColumnName", "emptyValueResourceKey": "WebContentFilterWhiteListedUrlExample", "childSettings": [ @@ -59,13 +59,13 @@ ], "entityKey": "allowedUrls", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } ], "dataType": 21, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypePermittedUrlsTableName", "descriptionResourceKey": "webContentFilterTypePermittedUrlsTableDescription", "childSettings": [ @@ -76,7 +76,7 @@ ], "entityKey": "allowedUrls", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -84,7 +84,7 @@ { "metadata": { "dataType": 20, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeBlockedUrlsColumnName", "emptyValueResourceKey": "WebContentFilterBlackListedUrlExample", "childSettings": [ @@ -95,13 +95,13 @@ ], "entityKey": "blockedUrls", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } ], "dataType": 21, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeBlockedUrlsTableName", "descriptionResourceKey": "webContentFilterTypeBlockedUrlsTableDescription", "childSettings": [ @@ -112,7 +112,7 @@ ], "entityKey": "blockedUrls", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -126,7 +126,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsHeaderName", "descriptionResourceKey": "empty", "childSettings": [ @@ -136,14 +136,14 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsLinkTextName", "descriptionResourceKey": "empty", "childSettings": [ @@ -153,7 +153,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true }, { @@ -161,7 +161,7 @@ { "metadata": { "dataType": 20, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsColumnUrlName", "emptyValueResourceKey": "kioskModeAppStoreExample", "childSettings": [ @@ -172,14 +172,14 @@ ], "entityKey": "url", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsColumnBookmarkPathName", "emptyValueResourceKey": "WebContentFilterBookmarkPathExample", "childSettings": [ @@ -190,14 +190,14 @@ ], "entityKey": "bookmarkFolder", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } }, { "metadata": { "dataType": 20, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsColumnTitleName", "emptyValueResourceKey": "WebContentFilterBookmarkTitleExample", "childSettings": [ @@ -208,13 +208,13 @@ ], "entityKey": "displayName", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } ], "dataType": 21, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeWhitelistedUrlsTableName", "descriptionResourceKey": "webContentFilterTypeWhitelistedUrlsTableDescription", "childSettings": [ @@ -225,7 +225,7 @@ ], "entityKey": "specificWebsitesOnly", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -234,12 +234,12 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], "dataType": 6, - "category": 130, + "category": 131, "nameResourceKey": "webContentFilterTypeName", "descriptionResourceKey": "webContentFilterTypeDescription", "childSettings": [ @@ -250,7 +250,7 @@ ], "entityKey": "contentFilterSettings", "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } ], @@ -258,7 +258,7 @@ ], "booleanActions": 0, - "policyType": 41, + "policyType": 42, "enabled": true } } diff --git a/Documentation/ObjectInfo/wifi_androidforworkwifi.json b/Documentation/ObjectInfo/wifi_androidforworkwifi.json index d9af638..a38137a 100644 --- a/Documentation/ObjectInfo/wifi_androidforworkwifi.json +++ b/Documentation/ObjectInfo/wifi_androidforworkwifi.json @@ -161,7 +161,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -226,7 +243,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -302,7 +335,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -432,7 +482,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -517,7 +583,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -635,7 +718,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -839,7 +938,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -904,7 +1020,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -980,7 +1112,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1110,7 +1259,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1195,7 +1360,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1313,7 +1495,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1536,7 +1734,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1601,7 +1816,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1677,7 +1908,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1802,7 +2050,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -1887,7 +2151,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2005,7 +2286,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2209,7 +2506,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2274,7 +2588,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2350,7 +2680,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2475,7 +2822,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2560,7 +2923,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2678,7 +3058,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2901,7 +3297,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -2966,7 +3379,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3042,7 +3471,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3167,7 +3613,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3252,7 +3714,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3370,7 +3849,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3574,7 +4069,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3639,7 +4151,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3715,7 +4243,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3840,7 +4385,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -3925,7 +4486,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 19, + "enabled": false } ], "dataType": 5, @@ -4043,7 +4621,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 19, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 19, + "enabled": false } ], "dataType": 5, diff --git a/Documentation/ObjectInfo/wifi_androidwifi.json b/Documentation/ObjectInfo/wifi_androidwifi.json index 66f7e1a..9d8e740 100644 --- a/Documentation/ObjectInfo/wifi_androidwifi.json +++ b/Documentation/ObjectInfo/wifi_androidwifi.json @@ -160,7 +160,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -225,7 +242,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -301,7 +334,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -431,7 +481,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -516,7 +582,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -634,7 +717,23 @@ "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 26, + "enabled": false } ], "dataType": 5, @@ -788,7 +887,24 @@ "booleanActions": 0, "unconfiguredValue": "notConfigured", "policyType": 26, - "enabled": true + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "selectRootCertificateForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificateForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 26, + "enabled": false } ], "dataType": 5, diff --git a/Documentation/ObjectInfo/wifi_ioswifi.json b/Documentation/ObjectInfo/wifi_ioswifi.json index c4055f1..ea043f2 100644 --- a/Documentation/ObjectInfo/wifi_ioswifi.json +++ b/Documentation/ObjectInfo/wifi_ioswifi.json @@ -30,7 +30,7 @@ "entityKey": "networkName", "booleanActions": 0, "defaultValue": "", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -47,7 +47,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -73,7 +73,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -99,7 +99,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -138,7 +138,7 @@ ], "entityKey": "preSharedKey", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -152,7 +152,7 @@ ], "entityKey": "wiFiSecurityType", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -187,7 +187,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -204,7 +204,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -228,7 +228,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -239,7 +239,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "noneOption", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -268,7 +268,7 @@ ], "entityKey": "disableMacAddressRandomization", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": false } ], @@ -292,7 +292,7 @@ "entityKey": "networkName", "booleanActions": 0, "defaultValue": "", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -309,7 +309,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -335,7 +335,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -361,7 +361,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -390,7 +390,7 @@ ], "entityKey": "wiFiSecurityType", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -422,7 +422,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -458,7 +458,7 @@ "entityKey": "eapFastConfiguration", "booleanActions": 0, "defaultValue": "noProtectedAccessCredential", - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -480,7 +480,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -504,7 +504,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -524,7 +524,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } } @@ -541,7 +541,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -560,8 +560,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -576,7 +593,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -592,7 +609,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -627,7 +644,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -641,7 +658,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -650,7 +667,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -675,8 +692,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -691,7 +724,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -708,7 +741,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -717,7 +750,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -741,7 +774,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -761,7 +794,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } } @@ -778,7 +811,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -797,8 +830,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -813,7 +863,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -829,7 +879,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -864,7 +914,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -878,7 +928,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -887,7 +937,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -933,7 +983,7 @@ ], "entityKey": "innerAuthenticationProtocolForEapTtls", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -950,7 +1000,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -975,8 +1025,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -991,7 +1057,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1008,7 +1074,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1017,7 +1083,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1039,7 +1105,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1063,7 +1129,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1083,7 +1149,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } } @@ -1100,7 +1166,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1119,8 +1185,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -1135,7 +1218,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1151,7 +1234,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1186,7 +1269,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1200,7 +1283,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1209,7 +1292,7 @@ ], "entityKey": "derivedCredentialSettings@odata.bind", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1233,7 +1316,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1258,8 +1341,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -1274,7 +1373,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1291,7 +1390,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1300,7 +1399,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1309,7 +1408,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1344,7 +1443,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1361,7 +1460,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1385,7 +1484,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1396,7 +1495,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "noneOption", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1425,7 +1524,7 @@ ], "entityKey": "disableMacAddressRandomization", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": false } ], @@ -1449,7 +1548,7 @@ "entityKey": "networkName", "booleanActions": 0, "defaultValue": "", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1466,7 +1565,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1492,7 +1591,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1518,7 +1617,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1552,7 +1651,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1572,7 +1671,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } } @@ -1589,7 +1688,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1608,8 +1707,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 53, - "enabled": true + "policyType": 54, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 54, + "enabled": false } ], "dataType": 5, @@ -1624,7 +1740,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1640,7 +1756,7 @@ ], "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1672,7 +1788,7 @@ ], "entityKey": "usernameFormatString", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1688,7 +1804,7 @@ ], "entityKey": "passwordFormatString", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1703,7 +1819,7 @@ ], "entityKey": "preSharedKey", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1720,7 +1836,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1729,7 +1845,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1738,7 +1854,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1773,7 +1889,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1790,7 +1906,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1814,7 +1930,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } ], @@ -1825,7 +1941,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "noneOption", - "policyType": 53, + "policyType": 54, "enabled": true }, { @@ -1854,7 +1970,7 @@ ], "entityKey": "disableMacAddressRandomization", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": false } ], @@ -1863,7 +1979,7 @@ ], "entityKey": "profileType", "booleanActions": 0, - "policyType": 53, + "policyType": 54, "enabled": true } } diff --git a/Documentation/ObjectInfo/wifi_macwifi.json b/Documentation/ObjectInfo/wifi_macwifi.json index 38cee91..ef473c0 100644 --- a/Documentation/ObjectInfo/wifi_macwifi.json +++ b/Documentation/ObjectInfo/wifi_macwifi.json @@ -30,7 +30,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -56,7 +56,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -82,7 +82,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -121,7 +121,7 @@ ], "entityKey": "preSharedKey", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -135,7 +135,7 @@ ], "entityKey": "wiFiSecurityType", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -170,7 +170,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -187,7 +187,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -211,7 +211,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -222,7 +222,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "noneOption", - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -246,7 +246,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -272,7 +272,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -298,7 +298,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -330,7 +330,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -366,7 +366,7 @@ "entityKey": "eapFastConfiguration", "booleanActions": 0, "defaultValue": "noProtectedAccessCredential", - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -388,7 +388,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -412,7 +412,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -432,7 +432,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } } @@ -449,7 +449,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -468,8 +468,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -484,7 +501,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -500,7 +517,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -515,7 +532,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -533,8 +550,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -549,7 +582,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -566,7 +599,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -590,7 +623,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -610,7 +643,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } } @@ -627,7 +660,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -646,8 +679,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -662,7 +712,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -678,7 +728,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -734,7 +784,7 @@ ], "entityKey": "innerAuthenticationProtocolForEapTtls", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -751,7 +801,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -776,8 +826,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -792,7 +858,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -809,7 +875,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -818,7 +884,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -840,7 +906,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -864,7 +930,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -884,7 +950,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } } @@ -901,7 +967,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -920,8 +986,25 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "selectCertificateProfiles", + "descriptionResourceKey": "selectRootCertificatesForServerValidationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rootCertificatesForServerValidation", + "booleanActions": 0, + "unconfiguredValue": "notConfigured", + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -936,7 +1019,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -952,7 +1035,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -986,7 +1069,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1011,8 +1094,24 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 66, - "enabled": true + "policyType": 67, + "enabled": false + }, + { + "dataType": 4, + "category": 112, + "nameResourceKey": "certificatesOption", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 67, + "enabled": false } ], "dataType": 5, @@ -1027,7 +1126,7 @@ ], "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -1044,7 +1143,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1053,7 +1152,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1062,7 +1161,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -1097,7 +1196,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true }, { @@ -1114,7 +1213,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1138,7 +1237,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1149,7 +1248,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "noneOption", - "policyType": 66, + "policyType": 67, "enabled": true } ], @@ -1158,7 +1257,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 66, + "policyType": 67, "enabled": true } } diff --git a/Documentation/ObjectInfo/wifi_windows10xwifi.json b/Documentation/ObjectInfo/wifi_windows10xwifi.json index 3e717d9..334f0bb 100644 --- a/Documentation/ObjectInfo/wifi_windows10xwifi.json +++ b/Documentation/ObjectInfo/wifi_windows10xwifi.json @@ -15,7 +15,7 @@ ], "entityKey": "customXml", "booleanActions": 0, - "policyType": 109, + "policyType": 110, "enabled": true }, { @@ -33,7 +33,7 @@ ], "entityKey": "authenticationCertificateId", "booleanActions": 0, - "policyType": 109, + "policyType": 110, "enabled": true } ], @@ -49,7 +49,7 @@ ], "booleanActions": 0, - "policyType": 109, + "policyType": 110, "enabled": true } ] diff --git a/Documentation/ObjectInfo/wifi_windows8wifi.json b/Documentation/ObjectInfo/wifi_windows8wifi.json index b37ac38..0a8ec76 100644 --- a/Documentation/ObjectInfo/wifi_windows8wifi.json +++ b/Documentation/ObjectInfo/wifi_windows8wifi.json @@ -14,7 +14,7 @@ "entityKey": "profileName", "booleanActions": 0, "defaultValue": "", - "policyType": 95, + "policyType": 96, "enabled": true }, { @@ -32,7 +32,7 @@ ], "entityKey": "payload", "booleanActions": 0, - "policyType": 95, + "policyType": 96, "enabled": true } ] diff --git a/Documentation/ObjectInfo/win10wifi_windows10wifi.json b/Documentation/ObjectInfo/win10wifi_windows10wifi.json index 95dbd76..04ec31c 100644 --- a/Documentation/ObjectInfo/win10wifi_windows10wifi.json +++ b/Documentation/ObjectInfo/win10wifi_windows10wifi.json @@ -28,7 +28,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -44,7 +44,7 @@ ], "entityKey": "networkName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -74,7 +74,7 @@ "entityKey": "connectToPreferredNetwork", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -93,7 +93,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -118,7 +118,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -149,7 +149,7 @@ "entityKey": "meteredConnectionLimit", "booleanActions": 0, "defaultValue": "unrestricted", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -192,7 +192,7 @@ ], "entityKey": "preSharedKey", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -218,7 +218,7 @@ "entityKey": "forceFIPSCompliance", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -227,7 +227,7 @@ ], "entityKey": "wifiSecurityType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -260,7 +260,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -277,7 +277,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -300,7 +300,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -310,7 +310,7 @@ "entityKey": "proxySetting", "booleanActions": 0, "defaultValue": "none", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -333,7 +333,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -349,7 +349,7 @@ ], "entityKey": "networkName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -379,7 +379,7 @@ "entityKey": "connectToPreferredNetwork", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -398,7 +398,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -423,7 +423,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -454,7 +454,7 @@ "entityKey": "meteredConnectionLimit", "booleanActions": 0, "defaultValue": "unrestricted", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -493,7 +493,7 @@ ], "entityKey": "authenticationType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -522,7 +522,7 @@ ], "entityKey": "cacheCredentials", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -538,7 +538,7 @@ ], "entityKey": "authenticationPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -554,7 +554,7 @@ ], "entityKey": "authenticationRetryDelayPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -570,7 +570,7 @@ ], "entityKey": "eapolStartPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -586,7 +586,7 @@ ], "entityKey": "maximumEAPOLStartMessages", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -602,7 +602,7 @@ ], "entityKey": "maximumAuthenticationFailures", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -635,7 +635,7 @@ ], "entityKey": "maximumAuthenticationTimeoutInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -664,7 +664,7 @@ ], "entityKey": "userBasedVirtualLan", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -689,7 +689,7 @@ "entityKey": "promptForAdditionalAuthenticationCredentials", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -712,7 +712,7 @@ ], "entityKey": "maximumAuthenticationTimeoutInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -741,7 +741,7 @@ ], "entityKey": "userBasedVirtualLan", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -766,7 +766,7 @@ "entityKey": "promptForAdditionalAuthenticationCredentials", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -776,7 +776,7 @@ "entityKey": "networkSingleSignOn", "booleanActions": 0, "defaultValue": "disabled", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -792,7 +792,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -813,7 +813,7 @@ ], "entityKey": "maximumPairwiseMasterKeyCacheTimeInMinutes", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -829,7 +829,7 @@ ], "entityKey": "maximumNumberOfPairwiseMasterKeysInCache", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -850,7 +850,7 @@ ], "entityKey": "maximumPreAuthenticationAttempts", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -869,7 +869,7 @@ "entityKey": "enablePreAuthentication", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -888,7 +888,7 @@ "entityKey": "enablePairwiseMasterKeyCaching", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -904,7 +904,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -936,7 +936,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -960,7 +960,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -980,7 +980,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -997,7 +997,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1016,7 +1016,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1032,7 +1032,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1048,7 +1048,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1063,7 +1063,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1098,7 +1098,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1114,7 +1114,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1139,7 +1139,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1155,7 +1155,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1173,7 +1173,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1189,7 +1189,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1205,12 +1205,53 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], "enabled": true }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", @@ -1230,7 +1271,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1246,7 +1287,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1255,7 +1296,7 @@ ], "entityKey": "clientCertType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -1273,7 +1314,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1289,7 +1330,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false } ], @@ -1313,7 +1354,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1333,7 +1374,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -1350,7 +1391,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1369,7 +1410,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1385,7 +1426,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1401,7 +1442,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1457,7 +1498,7 @@ ], "entityKey": "innerAuthenticationProtocolForEAPTTLS", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1474,7 +1515,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1499,7 +1540,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1515,7 +1556,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1532,7 +1573,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1557,7 +1598,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1573,7 +1614,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1590,7 +1631,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1615,7 +1656,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1631,7 +1672,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1649,7 +1690,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1665,7 +1706,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1682,7 +1723,65 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + }, + { + "dataType": 20, + "category": 113, + "nameResourceKey": "enableIdentityPrivacyName", + "descriptionResourceKey": "enableIdentityPrivacyDescription", + "emptyValueResourceKey": "identityPrivacyExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "outerIdentityPrivacyTemporaryValue", + "booleanActions": 0, + "policyType": 90, "enabled": true } ], @@ -1707,7 +1806,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1723,7 +1822,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1733,7 +1832,7 @@ "entityKey": "authenticationMethod", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1757,7 +1856,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1777,7 +1876,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -1794,7 +1893,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1813,7 +1912,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -1829,7 +1928,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1845,7 +1944,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1891,7 +1990,7 @@ ], "entityKey": "disableUserPromptForServerValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false } ], @@ -1905,7 +2004,7 @@ ], "entityKey": "performServerValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -1934,7 +2033,7 @@ ], "entityKey": "requireCryptographicBinding", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -1950,7 +2049,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -1984,7 +2083,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2009,7 +2108,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2025,7 +2124,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2042,7 +2141,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2067,7 +2166,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2083,7 +2182,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2100,7 +2199,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2125,7 +2224,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2141,7 +2240,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2159,7 +2258,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2175,7 +2274,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2191,7 +2290,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2208,7 +2307,65 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + }, + { + "dataType": 20, + "category": 113, + "nameResourceKey": "enableIdentityPrivacyName", + "descriptionResourceKey": "enableIdentityPrivacyDescription", + "emptyValueResourceKey": "identityPrivacyExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "outerIdentityPrivacyTemporaryValue", + "booleanActions": 0, + "policyType": 90, "enabled": true } ], @@ -2233,7 +2390,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2249,7 +2406,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2258,7 +2415,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2267,7 +2424,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2300,7 +2457,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2317,7 +2474,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2340,7 +2497,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2350,7 +2507,7 @@ "entityKey": "proxySetting", "booleanActions": 0, "defaultValue": "none", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2376,7 +2533,7 @@ "entityKey": "forceFIPSCompliance", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2399,7 +2556,7 @@ ], "entityKey": "ssid", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2415,7 +2572,7 @@ ], "entityKey": "networkName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2445,7 +2602,7 @@ "entityKey": "connectToPreferredNetwork", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2464,7 +2621,7 @@ "entityKey": "connectAutomatically", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2489,7 +2646,7 @@ "entityKey": "connectWhenNetworkNameIsHidden", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2520,7 +2677,7 @@ "entityKey": "meteredConnectionLimit", "booleanActions": 0, "defaultValue": "unrestricted", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2559,7 +2716,7 @@ ], "entityKey": "authenticationType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2588,7 +2745,7 @@ ], "entityKey": "cacheCredentials", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2604,7 +2761,7 @@ ], "entityKey": "authenticationPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2620,7 +2777,7 @@ ], "entityKey": "authenticationRetryDelayPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2636,7 +2793,7 @@ ], "entityKey": "eapolStartPeriodInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2652,7 +2809,7 @@ ], "entityKey": "maximumEAPOLStartMessages", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2668,7 +2825,7 @@ ], "entityKey": "maximumAuthenticationFailures", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2701,7 +2858,7 @@ ], "entityKey": "maximumAuthenticationTimeoutInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2730,7 +2887,7 @@ ], "entityKey": "userBasedVirtualLan", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2755,7 +2912,7 @@ "entityKey": "promptForAdditionalAuthenticationCredentials", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2778,7 +2935,7 @@ ], "entityKey": "maximumAuthenticationTimeoutInSeconds", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2807,7 +2964,7 @@ ], "entityKey": "userBasedVirtualLan", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -2832,7 +2989,7 @@ "entityKey": "promptForAdditionalAuthenticationCredentials", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2842,7 +2999,7 @@ "entityKey": "networkSingleSignOn", "booleanActions": 0, "defaultValue": "disabled", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2858,7 +3015,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2879,7 +3036,7 @@ ], "entityKey": "maximumPairwiseMasterKeyCacheTimeInMinutes", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2895,7 +3052,7 @@ ], "entityKey": "maximumNumberOfPairwiseMasterKeysInCache", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2916,7 +3073,7 @@ ], "entityKey": "maximumPreAuthenticationAttempts", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2935,7 +3092,7 @@ "entityKey": "enablePreAuthentication", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -2954,7 +3111,7 @@ "entityKey": "enablePairwiseMasterKeyCaching", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -2970,7 +3127,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3002,7 +3159,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3026,7 +3183,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3046,7 +3203,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -3063,7 +3220,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3082,7 +3239,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3098,7 +3255,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3114,7 +3271,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3129,7 +3286,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3164,7 +3321,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3180,7 +3337,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3205,7 +3362,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3221,7 +3378,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3239,7 +3396,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3255,7 +3412,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3271,12 +3428,53 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], "enabled": true }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", @@ -3296,7 +3494,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3312,7 +3510,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3321,7 +3519,7 @@ ], "entityKey": "clientCertType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -3339,7 +3537,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3355,7 +3553,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false } ], @@ -3379,7 +3577,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3399,7 +3597,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -3416,7 +3614,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3435,7 +3633,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3451,7 +3649,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3467,7 +3665,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3523,7 +3721,7 @@ ], "entityKey": "innerAuthenticationProtocolForEAPTTLS", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3540,7 +3738,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3565,7 +3763,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3581,7 +3779,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3598,7 +3796,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3623,7 +3821,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3639,7 +3837,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3656,7 +3854,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3681,7 +3879,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3697,7 +3895,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3715,7 +3913,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3731,7 +3929,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3748,7 +3946,65 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + }, + { + "dataType": 20, + "category": 113, + "nameResourceKey": "enableIdentityPrivacyName", + "descriptionResourceKey": "enableIdentityPrivacyDescription", + "emptyValueResourceKey": "identityPrivacyExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "outerIdentityPrivacyTemporaryValue", + "booleanActions": 0, + "policyType": 90, "enabled": true } ], @@ -3773,7 +4029,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3789,7 +4045,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3799,7 +4055,7 @@ "entityKey": "authenticationMethod", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3823,7 +4079,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3843,7 +4099,7 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } @@ -3860,7 +4116,7 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3879,7 +4135,7 @@ "entityKey": "rootCertificatesForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -3895,7 +4151,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3911,7 +4167,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -3957,7 +4213,7 @@ ], "entityKey": "disableUserPromptForServerValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false } ], @@ -3971,7 +4227,7 @@ ], "entityKey": "performServerValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -4000,7 +4256,7 @@ ], "entityKey": "requireCryptographicBinding", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": false }, { @@ -4016,7 +4272,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4050,7 +4306,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4075,7 +4331,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4091,7 +4347,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4108,7 +4364,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4133,7 +4389,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4149,7 +4405,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4166,7 +4422,7 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4191,7 +4447,7 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4207,7 +4463,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4225,7 +4481,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4241,7 +4497,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4257,7 +4513,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4274,7 +4530,65 @@ ], "entityKey": "outerIdentityPrivacyTemporaryValue", "booleanActions": 0, - "policyType": 89, + "policyType": 90, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "pFXImportCertType", + "value": "PFX Import certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 113, + "nameResourceKey": "selectCertificateProfile", + "descriptionResourceKey": "clientCertForClientAuthenticationName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificateForClientAuthentication", + "booleanActions": 0, + "policyType": 90, + "enabled": true + } + ], + "dataType": 5, + "category": 113, + "nameResourceKey": "clientCertForClientAuthenticationName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 90, + "enabled": true + }, + { + "dataType": 20, + "category": 113, + "nameResourceKey": "enableIdentityPrivacyName", + "descriptionResourceKey": "enableIdentityPrivacyDescription", + "emptyValueResourceKey": "identityPrivacyExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "outerIdentityPrivacyTemporaryValue", + "booleanActions": 0, + "policyType": 90, "enabled": true } ], @@ -4299,7 +4613,7 @@ ], "entityKey": "rootCertificateForClientValidation", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4315,7 +4629,7 @@ ], "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4324,7 +4638,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4333,7 +4647,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4366,7 +4680,7 @@ ], "entityKey": "proxyManualAddress", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4383,7 +4697,7 @@ ], "entityKey": "proxyManualPort", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4406,7 +4720,7 @@ ], "entityKey": "proxyAutomaticConfigurationUrl", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4416,7 +4730,7 @@ "entityKey": "proxySetting", "booleanActions": 0, "defaultValue": "none", - "policyType": 89, + "policyType": 90, "enabled": true }, { @@ -4442,7 +4756,7 @@ "entityKey": "forceFIPSCompliance", "booleanActions": 0, "defaultValue": false, - "policyType": 89, + "policyType": 90, "enabled": true } ], @@ -4451,7 +4765,7 @@ ], "entityKey": "@odata.type", "booleanActions": 0, - "policyType": 89, + "policyType": 90, "enabled": true } } diff --git a/Documentation/ObjectInfo/windowsatp_windows10atp.json b/Documentation/ObjectInfo/windowsatp_windows10atp.json index e779704..f1b78f8 100644 --- a/Documentation/ObjectInfo/windowsatp_windows10atp.json +++ b/Documentation/ObjectInfo/windowsatp_windows10atp.json @@ -28,7 +28,7 @@ ], "entityKey": "advancedThreatProtectionOnboardingBlob", "booleanActions": 0, - "policyType": 71, + "policyType": 72, "enabled": true } ], @@ -53,7 +53,7 @@ ], "entityKey": "advancedThreatProtectionOffboardingBlob", "booleanActions": 0, - "policyType": 71, + "policyType": 72, "enabled": true } ], @@ -63,7 +63,7 @@ "entityKey": "advancedThreatProtectionConfigureOnboarding", "booleanActions": 0, "defaultValue": "onboard", - "policyType": 71, + "policyType": 72, "enabled": true }, { @@ -89,7 +89,7 @@ "entityKey": "allowSampleSharing", "booleanActions": 0, "defaultValue": false, - "policyType": 71, + "policyType": 72, "enabled": true }, { @@ -115,7 +115,7 @@ "entityKey": "enableExpeditedTelemetryReporting", "booleanActions": 0, "defaultValue": false, - "policyType": 71, + "policyType": 72, "enabled": true } ] diff --git a/Documentation/ObjectInfo/windowsatp_windows10atpstreamlinedonboarding.json b/Documentation/ObjectInfo/windowsatp_windows10atpstreamlinedonboarding.json index 81ff62e..7f8e969 100644 --- a/Documentation/ObjectInfo/windowsatp_windows10atpstreamlinedonboarding.json +++ b/Documentation/ObjectInfo/windowsatp_windows10atpstreamlinedonboarding.json @@ -23,7 +23,7 @@ "entityKey": "allowSampleSharing", "booleanActions": 0, "defaultValue": false, - "policyType": 72, + "policyType": 73, "enabled": true }, { @@ -49,7 +49,7 @@ "entityKey": "enableExpeditedTelemetryReporting", "booleanActions": 0, "defaultValue": false, - "policyType": 72, + "policyType": 73, "enabled": true }, { @@ -65,7 +65,7 @@ ], "entityKey": "advancedThreatProtectionAutoPopulateOnboardingBlob", "booleanActions": 0, - "policyType": 72, + "policyType": 73, "enabled": true } ] diff --git a/Documentation/ObjectInfo/windowsdefenderatp_compliancewindows10.json b/Documentation/ObjectInfo/windowsdefenderatp_compliancewindows10.json index 7d44e88..694af24 100644 --- a/Documentation/ObjectInfo/windowsdefenderatp_compliancewindows10.json +++ b/Documentation/ObjectInfo/windowsdefenderatp_compliancewindows10.json @@ -3,12 +3,12 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 133, + "category": 134, "nameResourceKey": "complianceAtpDeviceRiskHeader", "childSettings": [ { "dataType": 16, - "category": 133, + "category": 134, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ @@ -50,7 +50,7 @@ }, { "dataType": 16, - "category": 133, + "category": 134, "nameResourceKey": "complianceDeviceRiskATPRequirementName", "descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription", "childSettings": [ diff --git a/Documentation/ObjectInfo/windowshelloforbusiness_windowsidentityprotection.json b/Documentation/ObjectInfo/windowshelloforbusiness_windowsidentityprotection.json index 47a8f74..0f0d704 100644 --- a/Documentation/ObjectInfo/windowshelloforbusiness_windowsidentityprotection.json +++ b/Documentation/ObjectInfo/windowshelloforbusiness_windowsidentityprotection.json @@ -2,7 +2,7 @@ "windowshelloforbusiness_windowsidentityprotection": [ { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBWindowsHelloForBusinessBlockedName", "descriptionResourceKey": "WHfBWindowsHelloForBusinessBlockedDesc", "childSettings": [ @@ -24,7 +24,7 @@ "children": [ { "dataType": 14, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinMinimumLengthName", "descriptionResourceKey": "WHfBPinMinimumLengthDesc", "childSettings": [ @@ -35,12 +35,12 @@ ], "entityKey": "pinMinimumLength", "booleanActions": 0, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 14, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinMaximumLengthName", "descriptionResourceKey": "WHfBPinMaximumLengthDesc", "childSettings": [ @@ -51,12 +51,12 @@ ], "entityKey": "pinMaximumLength", "booleanActions": 0, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinLowercaseCharactersUsageName", "descriptionResourceKey": "WHfBPinLowercaseCharactersUsageDesc", "childSettings": [ @@ -88,12 +88,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinUppercaseCharactersUsageName", "descriptionResourceKey": "WHfBPinUppercaseCharactersUsageDesc", "childSettings": [ @@ -125,12 +125,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinSpecialCharactersUsageName", "descriptionResourceKey": "WHfBPinSpecialCharactersUsageDesc", "childSettings": [ @@ -162,12 +162,12 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinExpirationInDaysName", "descriptionResourceKey": "WHfBPinExpirationInDaysDesc", "childSettings": [ @@ -3836,12 +3836,12 @@ ], "entityKey": "pinExpirationInDays", "booleanActions": 0, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 16, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinPreviousBlockCountName", "descriptionResourceKey": "WHfBPinPreviousBlockCountDesc", "childSettings": [ @@ -4110,12 +4110,12 @@ ], "entityKey": "pinPreviousBlockCount", "booleanActions": 0, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBPinRecoveryEnabledName", "descriptionResourceKey": "WHfBPinRecoveryEnabledDesc", "childSettings": [ @@ -4127,12 +4127,12 @@ "entityKey": "pinRecoveryEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBSecurityDeviceRequiredName", "descriptionResourceKey": "WHfBSecurityDeviceRequiredDesc", "childSettings": [ @@ -4144,12 +4144,12 @@ "entityKey": "securityDeviceRequired", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBUnlockWithBiometricsEnabledName", "descriptionResourceKey": "WHfBUnlockWithBiometricsEnabledDesc", "childSettings": [ @@ -4161,12 +4161,12 @@ "entityKey": "unlockWithBiometricsEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBEnhancedAntiSpoofingForFacialFeaturesEnabledName", "descriptionResourceKey": "WHfBEnhancedAntiSpoofingForFacialFeaturesEnabledDesc", "childSettings": [ @@ -4178,12 +4178,12 @@ "entityKey": "enhancedAntiSpoofingForFacialFeaturesEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBUseCertificatesForOnPremisesAuthEnabledName", "descriptionResourceKey": "WHfBUseCertificatesForOnPremisesAuthEnabledDesc", "childSettings": [ @@ -4195,7 +4195,7 @@ "entityKey": "useCertificatesForOnPremisesAuthEnabled", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true } ], @@ -4204,12 +4204,12 @@ ], "entityKey": "windowsHelloForBusinessBlocked", "booleanActions": 0, - "policyType": 97, + "policyType": 98, "enabled": true }, { "dataType": 0, - "category": 134, + "category": 135, "nameResourceKey": "WHfBUseSecurityKeyForSigninName", "descriptionResourceKey": "WHfBUseSecurityKeyForSigninDesc", "childSettings": [ @@ -4221,7 +4221,7 @@ "entityKey": "useSecurityKeyForSignin", "booleanActions": 2, "defaultValue": false, - "policyType": 97, + "policyType": 98, "enabled": true } ] diff --git a/Documentation/ObjectInfo/windowsspotlight_windows10general.json b/Documentation/ObjectInfo/windowsspotlight_windows10general.json index 7dc81fd..4765c0f 100644 --- a/Documentation/ObjectInfo/windowsspotlight_windows10general.json +++ b/Documentation/ObjectInfo/windowsspotlight_windows10general.json @@ -30,7 +30,7 @@ "booleanActions": 0, "defaultValue": "notConfigured", "unconfiguredValue": "notConfigured", - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -47,7 +47,7 @@ "entityKey": "windowsSpotlightBlockThirdPartyNotifications", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -64,7 +64,7 @@ "entityKey": "windowsSpotlightBlockConsumerSpecificFeatures", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -81,7 +81,7 @@ "entityKey": "windowsSpotlightBlockWindowsTips", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -98,7 +98,7 @@ "entityKey": "windowsSpotlightBlockOnActionCenter", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -115,7 +115,7 @@ "entityKey": "windowsSpotlightBlockTailoredExperiences", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -132,7 +132,7 @@ "entityKey": "windowsSpotlightBlockWelcomeExperience", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ], @@ -142,7 +142,7 @@ "entityKey": "windowsSpotlightBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true }, { @@ -159,7 +159,7 @@ "entityKey": "inkWorkspaceBlockSuggestedApps", "booleanActions": 3, "defaultValue": false, - "policyType": 78, + "policyType": 79, "enabled": true } ] diff --git a/Documentation/ObjectInfo/wirednetwork_macwirednetwork.json b/Documentation/ObjectInfo/wirednetwork_macwirednetwork.json index daa083d..ba517d9 100644 --- a/Documentation/ObjectInfo/wirednetwork_macwirednetwork.json +++ b/Documentation/ObjectInfo/wirednetwork_macwirednetwork.json @@ -2,7 +2,7 @@ "wirednetwork_macwirednetwork": [ { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "networkInterface", "descriptionResourceKey": "networkInterfaceDescription", "childSettings": [ @@ -51,12 +51,12 @@ ], "entityKey": "networkInterface", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "eAPTypeName", "descriptionResourceKey": "eAPTypeDescription", "childSettings": [ @@ -74,7 +74,7 @@ { "value": "certificate", "dataType": 9, - "category": 140, + "category": 141, "childSettings": [ ], @@ -83,12 +83,12 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "pACHeading", "descriptionResourceKey": "empty", "childSettings": [ @@ -119,7 +119,7 @@ "entityKey": "eapFastConfiguration", "booleanActions": 0, "defaultValue": "noProtectedAccessCredential", - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -133,7 +133,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "trust", "descriptionResourceKey": "trustDescription", "childSettings": [ @@ -143,7 +143,7 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { @@ -151,7 +151,7 @@ { "metadata": { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "empty", "descriptionResourceKey": "empty", "emptyValueResourceKey": "trustedServerCertificateNameExample", @@ -163,13 +163,13 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } } ], "dataType": 21, - "category": 140, + "category": 141, "nameResourceKey": "trustedServerCertificateNamesName", "descriptionResourceKey": "trustedServerCertificateNamesDescription", "childSettings": [ @@ -180,14 +180,14 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "selectRootCertificateForServerValidationName", "childSettings": [ @@ -199,12 +199,12 @@ "entityKey": "rootCertificateForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "selectRootCertificateForServerValidationName", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -215,14 +215,14 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "authentication", "childSettings": [ @@ -231,13 +231,13 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "value": "certificate", "dataType": 9, - "category": 140, + "category": 141, "childSettings": [ ], @@ -246,14 +246,14 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "empty", "childSettings": [ @@ -264,12 +264,12 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "certificatesOption", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -280,12 +280,12 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "enableIdentityPrivacyName", "descriptionResourceKey": "enableIdentityPrivacyDescription", "emptyValueResourceKey": "identityPrivacyExample", @@ -297,7 +297,7 @@ ], "entityKey": "enableOuterIdentityPrivacy", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -311,7 +311,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "trust", "descriptionResourceKey": "trustDescription", "childSettings": [ @@ -321,7 +321,7 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { @@ -329,7 +329,7 @@ { "metadata": { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "empty", "descriptionResourceKey": "empty", "emptyValueResourceKey": "trustedServerCertificateNameExample", @@ -341,13 +341,13 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } } ], "dataType": 21, - "category": 140, + "category": 141, "nameResourceKey": "trustedServerCertificateNamesName", "descriptionResourceKey": "trustedServerCertificateNamesDescription", "childSettings": [ @@ -358,14 +358,14 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "selectRootCertificateForServerValidationName", "childSettings": [ @@ -377,12 +377,12 @@ "entityKey": "rootCertificateForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "selectRootCertificateForServerValidationName", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -393,14 +393,14 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "authentication", "childSettings": [ @@ -409,12 +409,12 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "authenticationMethodName", "descriptionResourceKey": "authenticationMethodTTLSDescription", "childSettings": [ @@ -431,7 +431,7 @@ "children": [ { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "nonEapMethodName", "descriptionResourceKey": "nonEapMethodDescription", "childSettings": [ @@ -465,12 +465,12 @@ ], "entityKey": "nonEapAuthenticationMethodForEapTtls", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "enableIdentityPrivacyName", "descriptionResourceKey": "enableIdentityPrivacyDescription", "emptyValueResourceKey": "identityPrivacyExample", @@ -482,7 +482,7 @@ ], "entityKey": "enableOuterIdentityPrivacy", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -496,7 +496,7 @@ "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "empty", "childSettings": [ @@ -507,12 +507,12 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "certificatesOption", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -523,12 +523,12 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "enableIdentityPrivacyName", "descriptionResourceKey": "enableIdentityPrivacyDescription", "emptyValueResourceKey": "identityPrivacyExample", @@ -540,7 +540,7 @@ ], "entityKey": "enableOuterIdentityPrivacy", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -549,7 +549,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -562,7 +562,7 @@ { "value": "certificate", "dataType": 9, - "category": 140, + "category": 141, "childSettings": [ ], @@ -571,7 +571,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -585,7 +585,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "trust", "descriptionResourceKey": "trustDescription", "childSettings": [ @@ -595,7 +595,7 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { @@ -603,7 +603,7 @@ { "metadata": { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "empty", "descriptionResourceKey": "empty", "emptyValueResourceKey": "trustedServerCertificateNameExample", @@ -615,13 +615,13 @@ ], "entityKey": "trustedServerCertificateNamesName", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } } ], "dataType": 21, - "category": 140, + "category": 141, "nameResourceKey": "trustedServerCertificateNamesName", "descriptionResourceKey": "trustedServerCertificateNamesDescription", "childSettings": [ @@ -632,14 +632,14 @@ ], "entityKey": "trustedServerCertificateNames", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "selectRootCertificateForServerValidationName", "childSettings": [ @@ -651,12 +651,12 @@ "entityKey": "rootCertificateForServerValidation", "booleanActions": 0, "unconfiguredValue": "notConfigured", - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "selectRootCertificateForServerValidationName", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -667,14 +667,14 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 140, + "category": 141, "nameResourceKey": "authentication", "childSettings": [ @@ -683,12 +683,12 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 16, - "category": 140, + "category": 141, "nameResourceKey": "authenticationMethodName", "descriptionResourceKey": "authenticationMethodName", "childSettings": [ @@ -705,7 +705,7 @@ "children": [ { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "enableIdentityPrivacyName", "descriptionResourceKey": "enableIdentityPrivacyDescription", "emptyValueResourceKey": "identityPrivacyExample", @@ -717,7 +717,7 @@ ], "entityKey": "enableOuterIdentityPrivacy", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -731,7 +731,7 @@ "complexOptions": [ { "dataType": 4, - "category": 140, + "category": 141, "nameResourceKey": "selectCertificateProfile", "descriptionResourceKey": "empty", "childSettings": [ @@ -742,12 +742,12 @@ ], "entityKey": "identityCertificateForClientAuthentication", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], "dataType": 5, - "category": 140, + "category": 141, "nameResourceKey": "certificatesOption", "descriptionResourceKey": "empty", "emptyValueResourceKey": "selectCertificate", @@ -758,12 +758,12 @@ ], "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true }, { "dataType": 20, - "category": 140, + "category": 141, "nameResourceKey": "enableIdentityPrivacyName", "descriptionResourceKey": "enableIdentityPrivacyDescription", "emptyValueResourceKey": "identityPrivacyExample", @@ -775,7 +775,7 @@ ], "entityKey": "enableOuterIdentityPrivacy", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -784,7 +784,7 @@ ], "entityKey": "authenticationMethod", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ], @@ -793,7 +793,7 @@ ], "entityKey": "eapType", "booleanActions": 0, - "policyType": 67, + "policyType": 68, "enabled": true } ] diff --git a/Documentation/ObjectInfo/wireless_iosgeneral.json b/Documentation/ObjectInfo/wireless_iosgeneral.json index 0fa9beb..e691096 100644 --- a/Documentation/ObjectInfo/wireless_iosgeneral.json +++ b/Documentation/ObjectInfo/wireless_iosgeneral.json @@ -22,7 +22,7 @@ "entityKey": "cellularBlockDataRoaming", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -39,7 +39,7 @@ "entityKey": "cellularBlockGlobalBackgroundFetchWhileRoaming", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -55,7 +55,7 @@ "entityKey": "voiceDialingBlocked", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -72,7 +72,7 @@ "entityKey": "cellularBlockVoiceRoaming", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -89,7 +89,7 @@ "entityKey": "cellularBlockPersonalHotspot", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -115,7 +115,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -156,7 +156,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -174,7 +174,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -192,7 +192,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -208,7 +208,7 @@ ], "entityKey": "networkUsageRulesCellularDataList", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -219,7 +219,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -233,7 +233,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -251,7 +251,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -292,7 +292,7 @@ ], "entityKey": "appId", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -310,7 +310,7 @@ ], "entityKey": "name", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } }, @@ -328,7 +328,7 @@ ], "entityKey": "publisher", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } } @@ -344,7 +344,7 @@ ], "entityKey": "networkUsageRulesCellularRoamingDataList", "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -355,7 +355,7 @@ "booleanActions": 0, "defaultValue": "none", "unconfiguredValue": "none", - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -369,7 +369,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -377,7 +377,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -385,7 +385,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -410,7 +410,7 @@ "entityKey": "cellularBlockPerAppDataModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -426,7 +426,7 @@ "entityKey": "cellularBlockPlanModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -443,7 +443,7 @@ "entityKey": "cellularBlockPersonalHotspotModification", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -460,7 +460,7 @@ "entityKey": "wiFiConnectOnlyToConfiguredNetworks", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true }, { @@ -477,7 +477,7 @@ "entityKey": "wifiPowerOnForced", "booleanActions": 9, "defaultValue": false, - "policyType": 45, + "policyType": 46, "enabled": true } ], @@ -485,7 +485,7 @@ ], "booleanActions": 0, - "policyType": 45, + "policyType": 46, "enabled": true } ] diff --git a/Documentation/ObjectInfo/wirelessprojection_windows10teamgeneral.json b/Documentation/ObjectInfo/wirelessprojection_windows10teamgeneral.json index 4a8d7fb..d78e5e7 100644 --- a/Documentation/ObjectInfo/wirelessprojection_windows10teamgeneral.json +++ b/Documentation/ObjectInfo/wirelessprojection_windows10teamgeneral.json @@ -14,7 +14,7 @@ "entityKey": "miracastRequirePin", "booleanActions": 1, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -31,7 +31,7 @@ "entityKey": "miracastBlocked", "booleanActions": 3, "defaultValue": false, - "policyType": 86, + "policyType": 87, "enabled": true }, { @@ -153,7 +153,7 @@ "booleanActions": 0, "defaultValue": "userDefined", "unconfiguredValue": "userDefined", - "policyType": 86, + "policyType": 87, "enabled": true } ] diff --git a/Documentation/ObjectInfo/xboxservices_windows10endpointprotection.json b/Documentation/ObjectInfo/xboxservices_windows10endpointprotection.json index b387f6a..ee40d05 100644 --- a/Documentation/ObjectInfo/xboxservices_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/xboxservices_windows10endpointprotection.json @@ -2,7 +2,7 @@ "xboxservices_windows10endpointprotection": [ { "dataType": 19, - "category": 131, + "category": 132, "nameResourceKey": "xboxServicesEnableXboxGameSaveTaskName", "descriptionResourceKey": "xboxServicesEnableXboxGameSaveTaskDesc", "childSettings": [ @@ -24,12 +24,12 @@ "booleanActions": 0, "defaultValue": false, "unconfiguredValue": false, - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 131, + "category": 132, "nameResourceKey": "xboxServicesAccessoryManagementServiceStartupModeName", "descriptionResourceKey": "xboxServicesAccessoryManagementServiceStartupModeDesc", "childSettings": [ @@ -56,12 +56,12 @@ "booleanActions": 0, "defaultValue": "manual", "unconfiguredValue": "manual", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 131, + "category": 132, "nameResourceKey": "xboxServicesLiveAuthManagerServiceStartupModeName", "descriptionResourceKey": "xboxServicesLiveAuthManagerServiceStartupModeDesc", "childSettings": [ @@ -88,12 +88,12 @@ "booleanActions": 0, "defaultValue": "manual", "unconfiguredValue": "manual", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 131, + "category": 132, "nameResourceKey": "xboxServicesLiveGameSaveServiceStartupModeName", "descriptionResourceKey": "xboxServicesLiveGameSaveServiceStartupModeDesc", "childSettings": [ @@ -120,12 +120,12 @@ "booleanActions": 0, "defaultValue": "manual", "unconfiguredValue": "manual", - "policyType": 76, + "policyType": 77, "enabled": true }, { "dataType": 16, - "category": 131, + "category": 132, "nameResourceKey": "xboxServicesLiveNetworkingServiceStartupModeName", "descriptionResourceKey": "xboxServicesLiveNetworkingServiceStartupModeDesc", "childSettings": [ @@ -152,7 +152,7 @@ "booleanActions": 0, "defaultValue": "manual", "unconfiguredValue": "manual", - "policyType": 76, + "policyType": 77, "enabled": true } ] diff --git a/Documentation/ObjectInfo/zebramx_androidzebramx.json b/Documentation/ObjectInfo/zebramx_androidzebramx.json index a00a49c..0a69db6 100644 --- a/Documentation/ObjectInfo/zebramx_androidzebramx.json +++ b/Documentation/ObjectInfo/zebramx_androidzebramx.json @@ -4,7 +4,7 @@ "isSettingDescription": false, "showAsSectionHeader": false, "dataType": 8, - "category": 136, + "category": 137, "nameResourceKey": "androidZebraMxConfigurationLearnMore", "childSettings": [ @@ -20,7 +20,7 @@ "dataEntityKey": "configurationXml", "filenameEntityKey": "configurationXmlFilename", "dataType": 2, - "category": 136, + "category": 137, "nameResourceKey": "androidZebraMxConfigurationXmlName", "descriptionResourceKey": "androidZebraMxConfigurationFileXmlName", "childSettings": [ diff --git a/Extensions/Compare.psm1 b/Extensions/Compare.psm1 index 1082d3b..ab6a634 100644 --- a/Extensions/Compare.psm1 +++ b/Extensions/Compare.psm1 @@ -11,7 +11,7 @@ Objects can be compared based on Properties or Documentatation info. function Get-ModuleVersion { - '1.0.5' + '1.0.6' } function Invoke-InitializeModule @@ -160,6 +160,9 @@ function Show-CompareBulkForm $global:cbCompareType.ItemsSource = $global:comparisonTypes | Where ShowOnBulk -ne $false $global:cbCompareType.SelectedValue = (Get-Setting "Compare" "Type" "property") + $global:cbCompareCSVDelimiter.ItemsSource = @("", ",",";","-","|") + $global:cbCompareCSVDelimiter.SelectedValue = (Get-Setting "Compare" "Delimiter" ";") + $script:compareObjects = @() foreach($objType in $global:lstMenuItems.ItemsSource) { @@ -202,8 +205,9 @@ function Show-CompareBulkForm Add-XamlEvent $script:form "btnStartCompare" "add_click" { Write-Status "Compare objects" - Save-Setting "Compare" "Provider" $global:cbCompareProvider.SelectedValue - Save-Setting "Compare" "Type" $global:cbCompareType.SelectedValue + Save-Setting "Compare" "Provider" $global:cbCompareProvider.SelectedValue + Save-Setting "Compare" "Type" $global:cbCompareType.SelectedValue + Save-Setting "Compare" "Delimiter" $global:cbCompareCSVDelimiter.SelectedValue if($global:cbCompareProvider.SelectedItem.BulkCompare) { & $global:cbCompareProvider.SelectedItem.BulkCompare @@ -530,7 +534,8 @@ function Start-BulkCompareExportObjects } else { - $sourceObj = Get-GraphObject $curObject.Object $curObject.ObjectType + $sourceObj = Get-GraphObject $curObject.Object $curObject.ObjectType + $fileObj.Object | Add-Member Noteproperty -Name "@ObjectFromFile" -Value $true -Force $compareProperties = Compare-Objects $sourceObj.Object $fileObj.Object $item.ObjectType } @@ -618,8 +623,20 @@ function Save-BulkCompareResults if($compResultValues.Count -gt 0) { + $params = @{} + try + { + if($global:cbCompareCSVDelimiter.Text) + { + $params.Add("Delimiter", [char]$global:cbCompareCSVDelimiter.Text) + } + } + catch + { + + } Write-Log "Save bulk comare results to $file" - $compResultValues | Select -Property $props | ConvertTo-Csv -NoTypeInformation | Out-File -LiteralPath $file -Force -Encoding UTF8 + $compResultValues | Select -Property $props | ConvertTo-Csv -NoTypeInformation @params | Out-File -LiteralPath $file -Force -Encoding UTF8 } } @@ -798,6 +815,8 @@ function Start-CompareExportObject } } + $compareObj | Add-Member Noteproperty -Name "@ObjectFromFile" -Value $true -Force + $compareResult = Compare-Objects $obj.Object $compareObj $obj.ObjectType $global:dgCompareInfo.ItemsSource = $compareResult @@ -817,16 +836,6 @@ function Compare-Objects { Write-Log "Selected comparison type ($($global:cbCompareType.SelectedItem.Name)) does not have a Compare property specified" 3 } - <# - elseif($global:cbCompareType.SelectedValue -eq "property") - { - $compareResult = Compare-ObjectsBasedonProperty $obj1 $obj2 $objectType - } - elseif($global:cbCompareType.SelectedValue -eq "doc") - { - $compareResult = Compare-ObjectsBasedonDocumentation $obj1 $obj2 $objectType - } - #> $compareResult } @@ -854,10 +863,6 @@ function Add-CompareProperty $value1 = if($value1 -eq $null) { "" } else { $value1.ToString().Trim("`"") } $value2 = if($value2 -eq $null) { "" } else { $value2.ToString().Trim("`"") } - if( ($value1 -eq $value2) -eq $false) - { - $dummy = 1 - } $script:compareProperties += [PSCustomObject]@{ PropertyName = $name @@ -962,7 +967,6 @@ function Compare-ObjectsBasedonDocumentation ObjectType = $objectType }) - $obj2 | Add-Member Noteproperty -Name "@ObjectFromFile" -Value $true -Force $docObj2 = Invoke-ObjectDocumentation ([PSCustomObject]@{ Object = $obj2 @@ -1049,7 +1053,7 @@ function Compare-ObjectsBasedonDocumentation $addedProperties += ($prop.EntityKey + $prop.Category + $prop.SubCategory) $val1 = $prop.$settingsValue - $prop2 = $docObj2.Settings | Where { $_.EntityKey -eq $prop.EntityKey -and $_.Category -eq $prop.Category -and $_.SubCategory -eq $prop.SubCategory } + $prop2 = $docObj2.Settings | Where { $_.EntityKey -eq $prop.EntityKey -and $_.Category -eq $prop.Category -and $_.SubCategory -eq $prop.SubCategory -and $_.Enabled -eq $prop.Enabled } $val2 = $prop2.$settingsValue Add-CompareProperty $prop.Name $val1 $val2 $prop.Category $prop.SubCategory } @@ -1061,7 +1065,7 @@ function Compare-ObjectsBasedonDocumentation $addedProperties += ($prop.EntityKey + $prop.Category + $prop.SubCategory) $val2 = $prop.$settingsValue - $prop2 = $docObj1.Settings | Where { $_.EntityKey -eq $prop.EntityKey -and $_.Category -eq $prop.Category -and $_.SubCategory -eq $prop.SubCategory } + $prop2 = $docObj1.Settings | Where { $_.EntityKey -eq $prop.EntityKey -and $_.Category -eq $prop.Category -and $_.SubCategory -eq $prop.SubCategory -and $_.Enabled -eq $prop.Enabled } $val1 = $prop2.$settingsValue Add-CompareProperty $prop.Name $val1 $val2 $prop.Category $prop.SubCategory } diff --git a/Extensions/Documentation.psm1 b/Extensions/Documentation.psm1 index 2cdb46b..bca0503 100644 --- a/Extensions/Documentation.psm1 +++ b/Extensions/Documentation.psm1 @@ -20,7 +20,7 @@ $global:documentationProviders = @() function Get-ModuleVersion { - '1.0.5' + '1.0.6' } function Invoke-InitializeModule @@ -283,7 +283,8 @@ function Get-ObjectDocumentation DefaultDocumentationProperties = $defaultDocumentationProperties ErrorText = $status InputType = $inputType - UpdateFilteredObject = $updateFilteredObject + UpdateFilteredObject = $updateFilteredObject + UnconfiguredProperties = $obj."@UnconfiguredProperties" } } @@ -1175,6 +1176,7 @@ function Get-IntentSettingInfo ; # Skip child settings } elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementCollectionSettingInstance' -or + $defObj.'@odata.type' -eq '#microsoft.graph.deviceManagementComplexSettingDefinition' -or $defObj."valueType" -eq "collection") { $valueArr = @() @@ -1231,9 +1233,10 @@ function Get-IntentSettingInfo } $valueSet = $valueArr.Count -gt 0 } - elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingInstance') + elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingInstance' -or + $defObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingDefinition') { - $tmpDef = $category.settingDefinitions | Where id -eq $rawValue.'$implementationId' + $tmpDef = $category.settingDefinitions | Where id -eq $rawValue.implementationId if($tmpDef) { $itemValue = $tmpDef.displayName @@ -1284,7 +1287,8 @@ function Get-IntentSettingInfo { ; # Skip children if value is not set... } - elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementComplexSettingInstance') + elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementComplexSettingInstance' -or + $defObj.'@odata.type' -eq '#microsoft.graph.deviceManagementComplexSettingDefinition') { if($valueObj.Value) { @@ -1373,7 +1377,9 @@ function Get-IntentSettingInfo $curObjectInfo.Value = ?: $isValueSet "Configure" (Get-LanguageString "SettingDetails.notConfigured") $curObjectInfo.ValueSet = $isValueSet } - elseif($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingInstance' -and $rawValue -and $tmpDef ) + elseif(($valueObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingInstance' -or + $defObj.'@odata.type' -eq '#microsoft.graph.deviceManagementAbstractComplexSettingDefinition') -and + $rawValue -and $tmpDef) { foreach($childDefId in $tmpDef.propertyDefinitionIds) { @@ -1675,7 +1681,7 @@ function Invoke-TranslateSection } elseif($tmpStr) { - Write-Log "SubCategpry ignored based on length: $tmpStr" 2 + Write-LogDebug "SubCategpry ignored based on length: $tmpStr" 2 } } Invoke-ChildSections $obj $prop @@ -1741,6 +1747,7 @@ function Invoke-TranslateSection if($rawValue -eq $null -and ![String]::IsNullOrEmpty($prop.unconfiguredValue) -and $global:chkSetUnconfiguredValue.IsChecked) { $propValue = $prop.unconfiguredValue + Add-NotConfiguredProperty $prop } elseif($rawValue -eq $null -and ![String]::IsNullOrEmpty($prop.defaultValue) -and $global:chkSetDefaultValue.IsChecked) { @@ -2366,10 +2373,24 @@ function Invoke-TranslateBoolean } else { + Add-NotConfiguredProperty $prop Get-LanguageString "BooleanActions.notConfigured" } } +function Add-NotConfiguredProperty +{ + param($prop) + + # Add not configured prop to the base object + if(-not ($script:currentObject.PSObject.Properties | Where Name -eq "@UnconfiguredProperties")) + { + $script:currentObject | Add-Member Noteproperty -Name "@UnconfiguredProperties" -Value @() -Force + } + + $script:currentObject.'@UnconfiguredProperties' += $prop +} + function Invoke-TranslateOption { param($obj, $prop, [Switch]$SkipOptionChildren, $propValue = $null) @@ -2398,6 +2419,11 @@ function Invoke-TranslateOption } elseif($option.nameResourceKey) { + if($option.nameResourceKey -eq "notConfigured") + { + Add-NotConfiguredProperty $prop + } + $optionValue = (Get-LanguageString (?: $option.nameResourceKey.Contains(".") $option.nameResourceKey "SettingDetails.$($option.nameResourceKey)")) } else @@ -2477,6 +2503,7 @@ function Invoke-TranslateMultiOption } else { + Add-NotConfiguredProperty $prop Get-LanguageString "BooleanActions.notConfigured" } } @@ -2841,6 +2868,10 @@ function Invoke-TranslateAssignments if($assignment.target.GroupId) { $groupName = ($groupInfo | Where id -eq $assignment.target.GroupId).displayName + if(-not $groupName) + { + $groupName = $assignment.target.GroupId + } } elseif($assignment.target.'@odata.type' -eq "#microsoft.graph.allDevicesAssignmentTarget") { @@ -3386,10 +3417,11 @@ function Show-DocumentationForm Add-RawDataInfo $obj.Object $obj.ObjectType $updateNotConfigured = $true + $notConfiguredLoc = Get-LanguageString "BooleanActions.notConfigured" $notConfiguredText = "" if($global:cbNotConifugredText.SelectedValue -eq "notConfigured") { - $notConfiguredText = Get-LanguageString "BooleanActions.notConfigured" + $notConfiguredText = $notConfiguredLoc } elseif($global:cbNotConifugredText.SelectedValue -eq "asis") { @@ -3409,9 +3441,14 @@ function Show-DocumentationForm break } - if($global:chkSkipNotConfigured.IsChecked -and (([String]::IsNullOrEmpty($item.RawValue) -or $item.RawValue -eq "notConfigured"))) + if($global:chkSkipNotConfigured.IsChecked -and (([String]::IsNullOrEmpty($item.RawValue) -or ("$($item.RawValue)" -eq "notConfigured")))) { - # Skip unconfigured items + # Skip unconfigured items e.g. properties with null values + continue + } + elseif($global:chkSkipNotConfigured.IsChecked -and $documentedObj.UnconfiguredProperties -and ($documentedObj.UnconfiguredProperties | Where EntityKey -eq $item.EntityKey)) + { + # Skip unconfigured items e.g. boolean with a value but Not Configured continue } @@ -3438,7 +3475,14 @@ function Show-DocumentationForm if($updateNotConfigured -and ($item.RawValue -eq $null -or "$($item.RawValue)" -eq "" -or "$($item.RawValue)" -eq "notConfigured") -and [String]::IsNullOrEmpty($item.Value)) { $item.Value = $notConfiguredText - } + } + + if($global:chkSkipNotConfigured.IsChecked -and $item.Value -eq $notConfiguredLoc) + { + # Skip unconfigured items based on value e.g. value = Not Configured + Write-Log "Skipping property $($itenm.Name) based on '$($notConfiguredLoc)' string value" 2 + continue + } $filteredSettings += $item } @@ -3577,6 +3621,13 @@ function Add-CSVOptionsControl $global:spCSVCustomProperties.Visibility = (?: ($global:cbCSVDocumentationProperties.SelectedValue -ne "custom") "Collapsed" "Visible") $global:txtCSVCustomProperties.Visibility = (?: ($global:cbCSVDocumentationProperties.SelectedValue -ne "custom") "Collapsed" "Visible") + $global:cbCSVDelimiter.ItemsSource = @("", ",",";","-","|") + try + { + $global:cbCSVDelimiter.SelectedIndex = $global:cbCSVDelimiter.ItemsSource.IndexOf((Get-Setting "Documentation" "CSVDelimiter")) + } + catch {} + Add-XamlEvent $script:csvForm "browseCSVDocumentationPath" "add_click" { $folder = Get-Folder (Get-XamlProperty $script:csvForm "txtCSVDocumentationPath" "Text") "Select root folder for export" if($folder) @@ -3603,6 +3654,7 @@ function Invoke-CSVPreProcessItems { Save-Setting "Documentation" "CSVExportProperties" $global:cbCSVDocumentationProperties.SelectedValue Save-Setting "Documentation" "CSVCustomDisplayProperties" $global:txtCSVCustomProperties.Text + Save-Setting "Documentation" "CSVDelimiter" $global:cbCSVDelimiter.Text } function Invoke-CSVProcessItem @@ -3630,6 +3682,12 @@ function Invoke-CSVProcessItem $itemsToExport = @() + $params = @{} + if($global:cbCSVDelimiter.Text) + { + $params.Add('Delimiter',$global:cbCSVDelimiter.Text) + } + if(($global:cbCSVDocumentationProperties.SelectedValue -eq 'extended' -and $documentedObj.DisplayProperties) -or ($global:cbCSVDocumentationProperties.SelectedValue -eq 'custom' -and $global:txtCSVCustomProperties.Text)) { @@ -3687,14 +3745,14 @@ function Invoke-CSVProcessItem $itemsToExport += "" $itemsToExport += "# Assignments" $itemsToExport += "" - $itemsToExport += $documentedObj.Assignments | Select $properties | ConvertTo-Csv -NoTypeInformation + $itemsToExport += $documentedObj.Assignments | Select $properties | ConvertTo-Csv -NoTypeInformation @params } } else { $itemsToExport += $documentedObj.BasicInfo $itemsToExport += $documentedObj.FilteredSettings - $itemsToExport = $itemsToExport | Select Name,Value | ConvertTo-Csv -NoTypeInformation + $itemsToExport = $itemsToExport | Select Name,Value | ConvertTo-Csv -NoTypeInformation @params } $fileName = $folder + "\$((Remove-InvalidFileNameChars $objName)).csv" diff --git a/Extensions/DocumentationCustom.psm1 b/Extensions/DocumentationCustom.psm1 index dcc58ff..58ebad2 100644 --- a/Extensions/DocumentationCustom.psm1 +++ b/Extensions/DocumentationCustom.psm1 @@ -10,7 +10,7 @@ This module will also document some objects based on PowerShell functions function Get-ModuleVersion { - '1.0.3' + '1.0.4' } function Invoke-InitializeModule @@ -295,7 +295,7 @@ function Add-CDDocumentCustomProfileValue return $false } } - elseif($topObj.'@OData.Type' -like "#microsoft.graph.windows10EndpointProtectionConfiguration") + elseif($topObj.'@OData.Type' -like "#microsoft.graph.windowsHealthMonitoringConfiguration") { if($prop.EntityKey -eq "configDeviceHealthMonitoringScope") { @@ -713,14 +713,13 @@ function Add-CDDocumentCustomProfileProperty Add-DefenderFirewallSettings $obj.firewallProfilePrivate "Private" Add-DefenderFirewallSettings $obj.firewallProfilePublic "Public" - $obj | Add-Member Noteproperty -Name "bitLockerBaseConfigureEncryptionMethods" -Value ($obj.bitLockerSystemDrivePolicy.encryptionMethod -ne $null) -Force + $obj | Add-Member Noteproperty -Name "bitLockerBaseConfigureEncryptionMethods" -Value (?: ($obj.bitLockerSystemDrivePolicy.encryptionMethod -ne $null) $true $null) -Force $obj | Add-Member Noteproperty -Name "bitLockerSystemDriveEncryptionMethod" -Value $obj.bitLockerSystemDrivePolicy.encryptionMethod -Force $obj | Add-Member Noteproperty -Name "bitLockerFixedDriveEncryptionMethod" -Value $obj.bitLockerFixedDrivePolicy.encryptionMethod -Force $obj | Add-Member Noteproperty -Name "bitLockerRemovableDriveEncryptionMethod" -Value $obj.bitLockerRemovableDrivePolicy.encryptionMethod -Force - #$obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerMinimumPinLength" -Value ($obj.bitLockerSystemDrivePolicy.minimumPinLength -ne $null) -Force - $obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerMinimumPinLength" -Value ($obj.bitLockerSystemDrivePolicy.minimumPinLength -ne $null) -Force - $obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerSyntheticSystemDrivePolicybitLockerDriveRecovery" -Value ($obj.bitLockerSystemDrivePolicy.recoveryOptions -ne $null) -Force + $obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerMinimumPinLength" -Value (?: ($obj.bitLockerSystemDrivePolicy.minimumPinLength -ne $null) $true $null) -Force + $obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerSyntheticSystemDrivePolicybitLockerDriveRecovery" -Value (?: ($obj.bitLockerSystemDrivePolicy.recoveryOptions -ne $null) $true $null) -Force if($obj.bitLockerSystemDrivePolicy.prebootRecoveryUrl -eq $null -and $obj.bitLockerSystemDrivePolicy.prebootRecoveryEnableMessageAndUrl -eq $null) { @@ -746,7 +745,7 @@ function Add-CDDocumentCustomProfileProperty $obj.bitLockerSystemDrivePolicy | Add-Member Noteproperty -Name "bitLockerSyntheticSystemDrivePolicy$($tmpProp)" -Value $obj.bitLockerSystemDrivePolicy.recoveryOptions.$tmpProp -Force } - $obj.bitLockerFixedDrivePolicy | Add-Member Noteproperty -Name "bitLockerSyntheticFixedDrivePolicybitLockerDriveRecovery" -Value ($obj.bitLockerFixedDrivePolicy.recoveryOptions -ne $null) -Force + $obj.bitLockerFixedDrivePolicy | Add-Member Noteproperty -Name "bitLockerSyntheticFixedDrivePolicybitLockerDriveRecovery" -Value (?: ($obj.bitLockerFixedDrivePolicy.recoveryOptions -ne $null) $true $null) -Force foreach($tmpProp in ($obj.bitLockerFixedDrivePolicy.recoveryOptions.PSObject.Properties).Name) { @@ -2194,15 +2193,17 @@ function Invoke-CDDocumentCustomOMAUri foreach($setting in $obj.omaSettings) { - Add-CustomSettingObject ([PSCustomObject]@{ - Name = (Get-LanguageString "TableHeaders.name") + # Add the name of the OMA-URI setting + Add-CustomSettingObject ([PSCustomObject]@{ + Name = (Get-LanguageString "SettingDetails.nameName") Value = $setting.displayName EntityKey = "displayName_$($setting.omaUri)" Category = $category SubCategory = $setting.displayName }) - Add-CustomSettingObject ([PSCustomObject]@{ + # Add the description of the OMA-URI setting + Add-CustomSettingObject ([PSCustomObject]@{ Name = (Get-LanguageString "TableHeaders.description") Value = $setting.description EntityKey = "description_$($setting.omaUri)" @@ -2210,7 +2211,8 @@ function Invoke-CDDocumentCustomOMAUri SubCategory = $setting.displayName }) - Add-CustomSettingObject ([PSCustomObject]@{ + # Add the OMA-URI path of the OMA-URI setting + Add-CustomSettingObject ([PSCustomObject]@{ Name = (Get-LanguageString "SettingDetails.oMAURIName") Value = $setting.omaUri EntityKey = "omaUri_$($setting.omaUri)" @@ -2253,6 +2255,7 @@ function Invoke-CDDocumentCustomOMAUri if($value) { + # Add the type of the OMA-URI setting Add-CustomSettingObject ([PSCustomObject]@{ Name = (Get-LanguageString "SettingDetails.dataTypeName") Value = $value @@ -2262,15 +2265,40 @@ function Invoke-CDDocumentCustomOMAUri }) } + $value = $setting.value + # Add the type of the OMA-URI setting if($setting.isEncrypted -ne $true) { + if($setting.'@OData.Type' -eq '#microsoft.graph.omaSettingStringXml') + { + $value = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($value)) + } + Add-CustomSettingObject ([PSCustomObject]@{ Name = (Get-LanguageString "SettingDetails.valueName") - Value = $setting.value + Value = $value EntityKey = "value_$($setting.omaUri)" Category = $category SubCategory = $setting.displayName }) + } + else # ToDo: Add check button + { + if($obj.'@ObjectFromFile' -ne $true) + { + $xmlValue = Invoke-GraphRequest -Url "/deviceManagement/deviceConfigurations/$($obj.Id)/getOmaSettingPlainTextValue(secretReferenceValueId='$($setting.secretReferenceValueId)')" + $value = $xmlValue.Value + if($value) + { + Add-CustomSettingObject ([PSCustomObject]@{ + Name = (Get-LanguageString "SettingDetails.valueName") + Value = $value + EntityKey = "value_$($setting.omaUri)" + Category = $category + SubCategory = $setting.displayName + }) + } + } } } } diff --git a/Extensions/DocumentationWord.psm1 b/Extensions/DocumentationWord.psm1 index 2f83954..9fedef6 100644 --- a/Extensions/DocumentationWord.psm1 +++ b/Extensions/DocumentationWord.psm1 @@ -3,7 +3,7 @@ #https://docs.microsoft.com/en-us/office/vba/api/overview/word function Get-ModuleVersion { - '1.0.2' + '1.0.3' } function Invoke-InitializeModule @@ -54,9 +54,7 @@ function Invoke-InitializeModule CombinedValueWithLabel="TableHeaders.value" CombinedValue="TableHeaders.value" useDeviceLicensing="TableHeaders.licenseType" - #filterMode="Filter mode" # Not in any sring file yet - - + #filterMode="Filter mode" # Not in any string file yet } } @@ -83,6 +81,10 @@ function Add-WordOptionsControl $global:txtWordTableHeaderStyle.Text = Get-Setting "Documentation" "WordTableHeaderStyle" "" $global:txtWordCategoryHeaderStyle.Text = Get-Setting "Documentation" "WordCategoryHeaderStyle" "" $global:txtWordSubCategoryHeaderStyle.Text = Get-Setting "Documentation" "WordSubCategoryHeaderStyle" "" + $global:txtWordContentControls.Text = Get-Setting "Documentation" "WordContentControls" "Year=;Address=" + $global:txtWordTitleProperty.Text = Get-Setting "Documentation" "WordTitleProperty" "Intune documentation" + $global:txtWordSubjectProperty.Text = Get-Setting "Documentation" "WordSubjectProperty" "Intune documentation" + $global:chkWordOpenDocument.IsChecked = ((Get-Setting "Documentation" "WordOpenDocument" "true") -ne "false") @@ -125,6 +127,9 @@ function Invoke-WordPreProcessItems Save-Setting "Documentation" "WordTableHeaderStyle" $global:txtWordTableHeaderStyle.Text Save-Setting "Documentation" "WordCategoryHeaderStyle" $global:txtWordCategoryHeaderStyle.Text Save-Setting "Documentation" "WordSubCategoryHeaderStyle" $global:txtWordSubCategoryHeaderStyle.Text + Save-Setting "Documentation" "WordContentControls" $global:txtWordContentControls.Text + Save-Setting "Documentation" "WordTitleProperty" $global:txtWordTitleProperty.Text + Save-Setting "Documentation" "WordSubjectProperty" $global:txtWordSubjectProperty.Text try { @@ -205,6 +210,69 @@ function Invoke-WordPreProcessItems } $script:builtinStyles = [Enum]::GetNames([Microsoft.Office.Interop.Word.wdBuiltinStyle]) + + if(-not $global:txtWordDocumentTemplate.Text) + { + $script:doc.Application.Templates.LoadBuildingBlocks() + $BuildingBlocks = $script:doc.Application.Templates | Where {$_.name -eq 'Built-In Building Blocks.dotx'} + if($BuildingBlocks) + { + $coverPageName = ?? $global:txtWordCoverPage.Text 'Ion (Dark)' + try + { + $blocks = @() + + for($i = 1;$i -le $BuildingBlocks.BuildingBlockEntries.Count;$i++) + { + $blocks += $BuildingBlocks.BuildingBlockEntries.Item($i) + } + + $coverPages = (($blocks | Where { $_.Type.Index -eq 2 } | Select Name) | Sort -Property Name).Name + + if(($coverPages | measure).Count -gt 0) + { + if($coverPageName -notin $coverPages) + { + Write-Log "$coverPageName not found in available Cover Page list. Using: $($coverPages[0])" + Write-Log "Available Cover Pages: $(($coverPages -join ","))" + $coverPageName = $coverPages[0] + } + else + { + Write-Log "Add Cover Page: $coverPageName" + } + } + + $coverPage = $BuildingBlocks.BuildingBlockEntries.Item($coverPageName) + $coverPage.Insert($script:wordApp.Selection.Range,$true) | Out-Null + $script:wordApp.Selection.InsertNewPage() + } + catch + { + Write-LogError "Failed to create Cover Page" $_.Exception + } + + try + { + $coverPageProps = $script:doc.CustomXMLParts | where { $_.NamespaceURI -match "coverPageProps$" } + if($coverPageProps) + { + Write-Log "Available Cover Page properties for $($coverPageName): $(((([xml]$coverPageProps.DocumentElement.XML).ChildNodes[0].ChildNodes).Name -join ","))" + } + } + catch{} + + try + { + $script:doc.TablesOfContents.Add($script:wordApp.Selection.Range) | out-null + $script:wordApp.Selection.InsertNewPage() + } + catch + { + Write-LogError "Failed to create Table of Contents" $_.Exception + } + } + } } function Invoke-WordPostProcessItems @@ -216,17 +284,34 @@ function Invoke-WordPostProcessItems } #Add properties - ToDo: This is static... - Set-WordDocBuiltInProperty "wdPropertyTitle" "Intune documentation" - Set-WordDocBuiltInProperty "wdPropertySubject" "Intune documentation" + Set-WordDocBuiltInProperty "wdPropertyTitle" (?? $global:txtWordTitleProperty.Text "Intune documentation") + Set-WordDocBuiltInProperty "wdPropertySubject" (?? $global:txtWordSubjectProperty.Text "Intune documentation") Set-WordDocBuiltInProperty "wdPropertyAuthor" $userName Set-WordDocBuiltInProperty "wdPropertyCompany" $global:Organization.displayName Set-WordDocBuiltInProperty "wdPropertyKeywords" "Intune,Endpoint Manager,MEM" + + try + { + # ToDo: Add support for custom properties + # Add: https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.core.documentproperties.add?view=office-pia + # Types: https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.core.msodocproperties?view=office-pia + #$coverPageProps = $script:doc.CustomXMLParts | where { $_.NamespaceURI -match "coverPageProps$" } + #[System.__ComObject].InvokeMember("add",[System.Reflection.BindingFlags]::InvokeMethod,$null,$script:doc.CustomDocumentProperties,([array]("PropName", $false, 4, "PropValue"))) + + $ContentControlProperties = $global:txtWordContentControls.Text #"Year=;Address=TestAddress" + foreach($ccObj in $ContentControlProperties.Split(';')) + { + $ccName,$ccVal = $ccObj.Split('=') + Set-WordContentControlText $ccName $ccVal + } + } + catch {} #update fields, ToC etc. $script:doc.Fields | ForEach-Object -Process { $_.Update() | Out-Null } $script:doc.TablesOfContents | ForEach-Object -Process { $_.Update() | Out-Null } $script:doc.TablesOfFigures | ForEach-Object -Process { $_.Update() | Out-Null } - $script:doc.TablesOfFigures | ForEach-Object -Process { $_.Update() | Out-Null } + $script:doc.TablesOfAuthorities | ForEach-Object -Process { $_.Update() | Out-Null } $fileName = $global:txtWordDocumentName.Text if(-not $fileName) @@ -250,15 +335,57 @@ function Invoke-WordPostProcessItems if($global:chkWordOpenDocument.IsChecked -eq $true) { - $wordApp.Visible = $true - $wordApp.WindowState = [Microsoft.Office.Interop.Word.WdWindowState]::wdWindowStateMaximize - $wordApp.Activate() - [Console.Window]::SetForegroundWindow($wordApp.ActiveWindow.Hwnd) | Out-Null + $script:wordApp.Visible = $true + $script:wordApp.WindowState = [Microsoft.Office.Interop.Word.WdWindowState]::wdWindowStateMaximize + $script:wordApp.Activate() + [Console.Window]::SetForegroundWindow($script:wordApp.ActiveWindow.Hwnd) | Out-Null } else { $script:doc.Close([Microsoft.Office.Interop.Word.WdSaveOptions]::wdDoNotSaveChanges) - $wordApp.Quit() + $script:wordApp.Quit() + } +} + +function Set-WordContentControlText +{ + param($controlName, $value) + + if(-not $controlName) { return } + + try + { + $ctrl = $script:doc.SelectContentControlsByTitle($controlName) + + if($ctrl) + { + Write-LogDebug "Update ContentControl $controlName (Type: $($ctrl[1].Type))" + if($ctrl[1].Type -eq 6) + { + if($ctrl[1].DateDisplayFormat) + { + $ctrl[1].Range.Text = (Get-Date).ToString($ctrl[1].DateDisplayFormat) + } + else + { + $ctrl[1].Range.Text = (Get-Date).ToShortDateString() + } + } + else + { + if(-not $value) { return } + + $ctrl[1].Range.Text = $value + } + } + else + { + Write-Log "No ContentControl found with name $controlName" 2 + } + } + catch + { + Write-LogError "Failed to set ContentControl $controlName" $_.Exception } } diff --git a/Extensions/EndpointManager.psm1 b/Extensions/EndpointManager.psm1 index 5ffeb26..ac7dd86 100644 --- a/Extensions/EndpointManager.psm1 +++ b/Extensions/EndpointManager.psm1 @@ -10,7 +10,7 @@ This module is for the Endpoint Manager/Intune View. It manages Export/Import/Co #> function Get-ModuleVersion { - '3.1.8' + '3.1.9' } function Invoke-InitializeModule @@ -106,7 +106,9 @@ function Invoke-InitializeModule Permissons=@("DeviceManagementConfiguration.ReadWrite.All") PropertiesToRemove = @("privacyAccessControls") PostFileImportCommand = { Start-PostFileImportDeviceConfiguration @args } + PreCopyCommand = { Start-PreCopyDeviceConfiguration @args } PostCopyCommand = { Start-PostCopyDeviceConfiguration @args } + PostExportCommand = { Start-PostExportDeviceConfiguration @args } GroupId = "DeviceConfiguration" }) @@ -187,6 +189,7 @@ function Invoke-InitializeModule # Could work with https://main.iam.ad.ext.azure.com/api/LoginTenantBrandings + #> Add-ViewItem (New-Object PSObject -Property @{ Title = "Azure Branding" @@ -196,12 +199,12 @@ function Invoke-InitializeModule ViewProperties = @("Id") PreImportCommand = { Start-PreImportAzureBranding @args } PostListCommand = { Start-PostListAzureBranding @args } + ShowButtons = @("Export","View") NameProperty = "Id" Permissons=@("Organization.ReadWrite.All") Icon = "Branding" SkipRemoveProperties = @('Id') }) - #> Add-ViewItem (New-Object PSObject -Property @{ Title = "Enrollment Status Page" @@ -381,6 +384,7 @@ function Invoke-InitializeModule ODataMetadata="minimal" # categories property not supported with ODataMetadata full PostFileImportCommand = { Start-PostFileImportApplications @args } PreUpdateCommand = { Start-PreUpdateApplication @args } + PreImportCommand = { Start-PreImportCommandApplication @args } GroupId = "Apps" }) @@ -393,6 +397,7 @@ function Invoke-InitializeModule Permissons=@("DeviceManagementServiceConfig.ReadWrite.All") PreImportAssignmentsCommand = { Start-PreImportAssignmentsAutoPilot @args } PreDeleteCommand = { Start-PreDeleteAutoPilot @args } + PropertiesToRemoveForUpdate = @('managementServiceAppId') GroupId = "WinEnrollment" }) @@ -666,28 +671,28 @@ function Set-EMViewPanel }) Add-XamlEvent $panel "txtFilter" "Add_LostFocus" ({ #param($obj, $e) - Invoke-FiterBoxChanged $this + Invoke-FilterBoxChanged $this #$e.Handled = $true }) Add-XamlEvent $panel "txtFilter" "Add_GotFocus" ({ if($this.Tag -eq "1" -and $this.Text -eq "Filter") { $this.Text = "" } - Invoke-FiterBoxChanged $this + Invoke-FilterBoxChanged $this }) Add-XamlEvent $panel "txtFilter" "Add_TextChanged" ({ - Invoke-FiterBoxChanged $this + Invoke-FilterBoxChanged $this }) - Invoke-FiterBoxChanged ($panel.FindName("txtFilter")) + Invoke-FilterBoxChanged ($panel.FindName("txtFilter")) $allowDelete = Get-SettingValue "EMAllowDelete" Set-XamlProperty $panel "btnDelete" "Visibility" (?: ($allowDelete -eq $true) "Visible" "Collapsed") $global:dgObjects.add_selectionChanged({ - Set-XamlProperty $this.Parent "btnView" "IsEnabled" (?: ($global:dgObjects.SelectedItem -eq $null) $false $true) - Set-XamlProperty $this.Parent "btnCopy" "IsEnabled" (?: ($global:dgObjects.SelectedItem -eq $null) $false $true) - Set-XamlProperty $this.Parent "btnDelete" "IsEnabled" (?: ($global:dgObjects.SelectedItem -eq $null -and $global:curObjectType.AllowDelete -ne $false) $false $true) + Set-XamlProperty $this.Parent "btnView" "IsEnabled" (?: ($null -eq $global:dgObjects.SelectedItem) $false $true) + Set-XamlProperty $this.Parent "btnCopy" "IsEnabled" (?: ($null -eq $global:dgObjects.SelectedItem) $false $true) + Set-XamlProperty $this.Parent "btnDelete" "IsEnabled" (?: ($null -eq $global:dgObjects.SelectedItem -and $global:curObjectType.AllowDelete -ne $false) $false $true) }) # ToDo: Move this to the view object @@ -696,7 +701,7 @@ function Set-EMViewPanel { $dpd.AddValueChanged($global:dgObjects, { Set-XamlProperty $global:dgObjects.Parent "txtFilter" "Text" "" - $enabled = (?: ($this.ItemsSource -eq $null -or ($this.ItemsSource | measure).Count -eq 0) $false $true) + $enabled = (?: ($null -eq $this.ItemsSource -or ($this.ItemsSource | measure).Count -eq 0) $false $true) Set-XamlProperty $global:dgObjects.Parent "btnImport" "IsEnabled" $true # Always all Import if ObjectType allows it Set-XamlProperty $global:dgObjects.Parent "btnExport" "IsEnabled" $enabled }) @@ -726,7 +731,7 @@ function Set-EMViewPanel } } -function Invoke-FiterBoxChanged +function Invoke-FilterBoxChanged { param($txtBox) @@ -751,9 +756,12 @@ function Invoke-FiterBoxChanged { $filter = { param ($item) - foreach($prop in ($item.PSObject.Properties | Where {$_.Name -notin @("IsSelected","Object")})) + + return ($null -ne ($item.PSObject.Properties | Where { $_.Name -notin @("IsSelected","Object", "ObjectType") -and $_.Value -match [regex]::Escape($txtBox.Text) })) + + foreach($prop in ($item.PSObject.Properties | Where { $_.Name -notin @("IsSelected","Object", "ObjectType")})) { - if($prop.Value -match $txtBox.Text) { return $true } + if($prop.Value -match [regex]::Escape($txtBox.Text)) { return $true } } $false } @@ -941,9 +949,82 @@ function Start-PostCopyDeviceConfiguration windowsPrivacyAccessControls = $objCopyFrom.privacyAccessControls } $json = $privacyObj | ConvertTo-Json -Depth 20 - $ret = Invoke-GraphRequest -Url "deviceManagement/deviceConfigurations('$($objNew.Id)')/windowsPrivacyAccessControls" -Body $json -Method "POST" + Invoke-GraphRequest -Url "deviceManagement/deviceConfigurations('$($objNew.Id)')/windowsPrivacyAccessControls" -Body $json -Method "POST" | Out-null } - } + } +} + +function Start-PreCopyDeviceConfiguration +{ + param($obj, $objectType, $newName) + + if(($obj.omaSettings | measure).Count -gt 0) + { + foreach($omaSetting in ($obj.omaSettings | Where isEncrypted -eq $true)) + { + if($omaSetting.isEncrypted -eq $false) { continue } + + $xmlValue = Invoke-GraphRequest -Url "/deviceManagement/deviceConfigurations/$($obj.Id)/getOmaSettingPlainTextValue(secretReferenceValueId='$($omaSetting.secretReferenceValueId)')" + if($xmlValue.Value) + { + $omaSetting.isEncrypted = $false + $omaSetting.secretReferenceValueId = $null + + if($omaSetting.'@odata.type' -eq "#microsoft.graph.omaSettingStringXml" -or + $omaSetting.'value@odata.type' -eq "#Binary") + { + $Bytes = [System.Text.Encoding]::UTF8.GetBytes($xmlValue.Value) + $omaSetting.value = [Convert]::ToBase64String($bytes) + } + else + { + $omaSetting.value = $xmlValue.Value + } + } + } + } + + $false +} + +function Start-PostExportDeviceConfiguration +{ + param($obj, $objectType, $path) + + $fileName = "$path\$((Remove-InvalidFileNameChars (Get-GraphObjectName $obj $objectType))).json" + + if(($obj.omaSettings | measure).Count -gt 0) + { + $updated = $false + foreach($omaSetting in @(($obj.omaSettings | Where isEncrypted -eq $true))) + { + if($omaSetting.isEncrypted -eq $false) { continue } + + # Get decrypted value and mark OMA-URI setting as not encrypted + $xmlValue = Invoke-GraphRequest -Url "/deviceManagement/deviceConfigurations/$($obj.Id)/getOmaSettingPlainTextValue(secretReferenceValueId='$($omaSetting.secretReferenceValueId)')" + if($xmlValue.Value) + { + $omaSetting.isEncrypted = $false + $omaSetting.secretReferenceValueId = $null + if($omaSetting.'@odata.type' -eq "#microsoft.graph.omaSettingStringXml" -or + $omaSetting.'value@odata.type' -eq "#Binary") + { + $Bytes = [System.Text.Encoding]::UTF8.GetBytes($xmlValue.Value) + $omaSetting.value = [Convert]::ToBase64String($bytes) + } + else + { + $omaSetting.value = $xmlValue.Value + } + $updated = $true + } + } + + if($updated) + { + $obj | ConvertTo-Json -Depth 20 | Out-File -LiteralPath $fileName -Force + } + } } #endregion @@ -1041,7 +1122,7 @@ function Start-PostImportIntuneBranding Remove-Property $global:brandingClone $prop } $json = ($global:brandingClone | ConvertTo-Json -Depth 20) - $ret = Invoke-GraphRequest -Url "$($objectType.API)/$($obj.Id)" -Body $json -Method "PATCH" + Invoke-GraphRequest -Url "$($objectType.API)/$($obj.Id)" -Body $json -Method "PATCH" | Out-Null } function Start-PostGetIntuneBranding @@ -1285,7 +1366,7 @@ function Start-PostListAppProtection # App Configurations for Managed Apps are included in App Protections e.g. the /deviceAppManagement/managedAppPolicies API # For some reason, the $filter option is not supported to filter out these objects # e.g. not isof(...) to excluded the type, not startsWith(id, 'A_') to exlude based on Id - # These filters generates a request error so fiter them out manually in this function instead + # These filters generates a request error so filter them out manually in this function instead # The portal is probably doing the same thing since these are included in the return but not in the UI $objList | Where { $_.Object.'@OData.Type' -ne '#microsoft.graph.targetedManagedAppConfiguration' } } @@ -1521,6 +1602,18 @@ function Start-PreUpdateApplication Remove-Property $obj "appStoreUrl" } + +function Start-PreImportCommandApplication +{ + param($obj, $objectType, $file, $assignments) + + if($obj.'@OData.Type' -in @('#microsoft.graph.microsoftStoreForBusinessApp','#microsoft.graph.androidStoreApp')) + { + Write-Log "App type '$($obj.'@OData.Type')' not supported for import" 2 + @{ "Import" = $false } + } +} + #endregion #region Group Policy/Administrative Templates functions @@ -1927,7 +2020,7 @@ function Start-PostFileImportNotifications { param($obj, $objectType, $file) - $tmpObj = Get-Content $file | ConvertFrom-Json + $tmpObj = Get-Content -LiteralPath $file | ConvertFrom-Json foreach($localizedNotificationMessage in $tmpObj.localizedNotificationMessages) { @@ -2004,6 +2097,12 @@ function Start-PreImportEnrollmentRestrictions { Remove-Property $obj "Id" } + + if($obj.windowsMobileRestriction) + { + # Windows Phone operations are no longer supported + Remove-Property $obj "windowsMobileRestriction" + } } function Start-PreDeleteEnrollmentRestrictions diff --git a/Extensions/IntuneTools.psm1 b/Extensions/IntuneTools.psm1 new file mode 100644 index 0000000..11c5712 --- /dev/null +++ b/Extensions/IntuneTools.psm1 @@ -0,0 +1,2054 @@ +<# +.SYNOPSIS +Module for Intune tools + +.DESCRIPTION +This module is for the Intune Tools View. + +# Full ADMX reference can be found here (from 2007): +# http://download.microsoft.com/download/5/0/8/5081217f-4a2a-470e-a7fa-5976e40b0839/Group%20Policy%20ADMX%20Syntax%20Reference%20Guide.doc + +# Schema documented 2017 +# https://docs.microsoft.com/en-us/previous-versions/windows/desktop/policy/admx-schema + +# ADMX schema reference can be found here +# https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-gpreg/6e10478a-e9e6-4fdc-a1f6-bdd9bd7f2209 + +.NOTES + Author: Mikael Karlsson +#> +function Get-ModuleVersion +{ + '1.0.0' +} + +function Invoke-InitializeModule +{ + $viewPanel = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerTools.xaml") -AddVariables + + if(-not $viewPanel) { return } + + Add-ADMXRegClasses + + #Add menu group and items + $global:EMToolsViewObject = (New-Object PSObject -Property @{ + Title = "Intune Tools" + Description = "Additional tools for managing Intune" + ID = "EMTools" + ViewPanel = $viewPanel + ItemChanged = { Show-EMTool } + Activating = { Invoke-EMToolsActivatingView } + Authentication = (Get-MSALAuthenticationObject) + Authenticate = { Invoke-EMToolsAuthenticateToMSAL } + AppInfo = (Get-GraphAppInfo "EM" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547") + SaveSettings = { Invoke-EMSaveSettings } + Permissions = @() + }) + + Add-ViewObject $global:EMToolsViewObject + + Add-ViewItem (New-Object PSObject -Property @{ + Title = "ADMX Import" + Id = "ADMXImport" + ViewID = "EMTools" + Permissons=@("DeviceManagementConfiguration.ReadWrite.All") + Icon="DeviceConfiguration" + ShowViewItem = { Show-ADMXIngestion } + }) + + Add-ViewItem (New-Object PSObject -Property @{ + Title = "Reg Values" + Id = "ADMXRegValues" + ViewID = "EMTools" + Permissons=@("DeviceManagementConfiguration.ReadWrite.All") + Icon="DeviceConfiguration" + ShowViewItem = { Show-ADMXRegValues } + }) + + # https://docs.microsoft.com/en-us/windows/client-management/mdm/win32-and-centennial-app-policy-configuration + # ADMX ingestion cannot write to these paths: + $script:unsupportedLocations = @('System','Software\Microsoft','Software\Policies\Microsoft') + # With excemption for these paths: + $script:unsupportedOverride = @('Software\Policies\Microsoft\Office','Software\Microsoft\Office','Software\Microsoft\Windows\CurrentVersion\Explorer','Software\Microsoft\Internet Explorer','software\policies\microsoft\shared tools\proofing tools','software\policies\microsoft\imejp','software\policies\microsoft\ime\shared','software\policies\microsoft\shared tools\graphics filters','software\policies\microsoft\windows\currentversion\explorer','software\policies\microsoft\softwareprotectionplatform','software\policies\microsoft\officesoftwareprotectionplatform','software\policies\microsoft\windows\windows search\preferences','software\policies\microsoft\exchange','software\microsoft\shared tools\proofing tools','software\microsoft\shared tools\graphics filters','software\microsoft\windows\windows search\preferences','software\microsoft\exchange','software\policies\microsoft\vba\security','software\microsoft\onedrive','software\Microsoft\Edge','Software\Microsoft\EdgeUpdate') + + $script:admxTemplate = @" + + + + + + + + + + + + + + + + + + + + +"@ +} + +function Invoke-EMToolsActivatingView +{ + +} + +function Invoke-EMToolsAuthenticateToMSAL +{ + $global:EMToolsViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" + Set-MSALCurrentApp $global:EMToolsViewObject.AppInfo + $usr = (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser")) + if($usr) + { + & $global:msalAuthenticator.Login -Account $usr + } +} + +function Show-EMTool +{ + if($global:lstMenuItems.SelectedItem.ShowViewItem) + { + & $global:lstMenuItems.SelectedItem.ShowViewItem + } + else + { + $global:grdToolsMain.Children.Clear() + } +} + +#region ADMX functions +function Show-ADMXIngestion +{ + if(-not $script:admxPanel) + { + $script:admxPanel = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerToolsADMX.xaml") -AddVariables + + if(-not $script:admxPanel) { return } + + $global:btnADMXLoadADMX.Add_Click({ + + $of = [System.Windows.Forms.OpenFileDialog]::new() + $of.Multiselect = $false + $of.Filter = "ADMX Files (*.admx)|*.admx" + $of.FileName = Get-Setting "Tools" "ADMXLastADMXFile" + if($of.ShowDialog() -eq "OK") + { + $script:currentADMXFile = [IO.FileInfo]$of.FileName + Write-Status "Loading policy settings from $($script:currentADMXFile.Name)" + Save-Setting "Tools" "ADMXLastADMXFile" $of.FileName + Start-AdmxLoadFile $of.FileName + Write-Status "" + } + }) + + $global:btnADMXLoadADML.Add_Click({ + $of = [System.Windows.Forms.OpenFileDialog]::new() + $of.Multiselect = $false + $of.Filter = "ADML Files (*.adml)|*.adml" + $of.FileName = Get-Setting "Tools" "ADMXLastADMLFile" + if($of.ShowDialog() -eq "OK") + { + Write-Status "Loading ADML policy $($of.FileName)" + Save-Setting "Tools" "ADMXLastADMLFile" $of.FileName + Invoke-LoadADMXSettings $of.FileName + Write-Status "" + } + }) + + $global:btnADMXImport.Add_Click({ + Write-Status "Import policy" + Import-ADMXPolicy + Write-Status "" + }) + + $global:btnADMXPolicyNameRandom.Add_Click({ + $guid = [Guid]::NewGuid() + if($global:txtADMXPolicyFileName.Text) + { + if($global:txtADMXPolicyFileName.Text.Split('_')[-1].Length -ne $guid.Guid.Length) + { + $global:txtADMXPolicyFileName.Text = ($global:txtADMXPolicyFileName.Text + "_" + $guid.Guid) + } + } + else + { + $global:txtADMXPolicyFileName.Text = $guid.Guid + } + }) + + <# + $global:txtADMXFilterSettings.Add_LostFocus({ + Invoke-ADMXFilterPolicies $this + }) + + $global:txtADMXFilterSettings.Add_GotFocus({ + if($this.Tag -eq "1" -and $this.Text -eq "Filter") { $this.Text = "" } + Invoke-ADMXFilterPolicies $this + }) + + $global:txtADMXFilterSettings.Add_TextChanged({ + Invoke-ADMXFilterPolicies $this + }) + Invoke-ADMXFilterPolicies $global:txtADMXFilterSettings + + #> + + $global:tvADMXCategories.Add_SelectedItemChanged({ + if($global:tvADMXCategories.SelectedItem.AllPolicies -eq $true) + { + $global:dgADMXCategoryPolicies.ColumnWidth = [System.Windows.Controls.DataGridLength]::Auto + $global:dgADMXCategoryPolicies.Columns[0].Width = [System.Windows.Controls.DataGridLength]::Auto + $global:dgADMXCategoryPolicies.Columns[1].Width = [System.Windows.Controls.DataGridLength]::Auto + $global:dgADMXCategoryPolicies.Columns[2].Width = [System.Windows.Controls.DataGridLength]::Auto + $global:dgADMXCategoryPolicies.Columns[2].Visibility = "Visible" + $script:ocADMXSettingsList = [System.Collections.ObjectModel.ObservableCollection[object]]::new(@($global:tvADMXCategories.SelectedItem.Tag)) + } + else + { + $global:dgADMXCategoryPolicies.ColumnWidth = [System.Windows.Controls.DataGridLength]"*" + $global:dgADMXCategoryPolicies.Columns[0].Width = [System.Windows.Controls.DataGridLength]"10*" + $global:dgADMXCategoryPolicies.Columns[1].Width = [System.Windows.Controls.DataGridLength]::Auto + $global:dgADMXCategoryPolicies.Columns[2].Visibility = "Collapsed" + $script:ocADMXSettingsList = [System.Collections.ObjectModel.ObservableCollection[object]]::new(@($script:admxPolicies | Where { $_.CategoryId -eq $global:tvADMXCategories.SelectedItem.Tag.CategoryName -and $_.SettingClass -eq $global:tvADMXCategories.SelectedItem.Tag.SettingClass})) + } + $global:dgADMXCategoryPolicies.ItemsSource = $script:ocADMXSettingsList + }) + + $global:dgADMXCategoryPolicies.Add_MouseDoubleClick({ + if(-not $global:dgADMXCategoryPolicies.SelectedItem) { return } + Show-ADMXSettingProperties $global:dgADMXCategoryPolicies.SelectedItem + }) + + $global:mnuADMXSettingsContextMenu.Add_Opened({ + $global:mnuADMXSettingEdit.IsEnabled = $null -ne $global:dgADMXCategoryPolicies.SelectedItem + }) + + $global:mnuADMXSettingEdit.Add_Click({ + if(-not $global:dgADMXCategoryPolicies.SelectedItem) { return } + Show-ADMXSettingProperties $global:dgADMXCategoryPolicies.SelectedItem + }) + + $winADMLFile = "$($env:WinDir)\PolicyDefinitions\en-US\Windows.adml" + if([IO.File]::Exists($winADMLFile)) + { + [xml]$script:windowsADML = Get-Content $winADMLFile + } + else + { + Write-Log "Could not find Windows.adml. Support OS text might not be displayed correctly" 2 + } + } + + $global:grdToolsMain.Children.Clear() + $global:grdToolsMain.Children.Add($script:admxPanel) +} + +function Show-ADMXSettingProperties +{ + param($settingObj) + + $script:settingsForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerToolsADMXSettingProperties.xaml") -AddVariables + + if(-not $script:settingsForm) { return } + + class ListValue + { + [string]$Key + [string]$Value + } + + Set-ADMXSettingProperties $settingObj + + Add-XamlEvent $script:settingsForm "btnADMXSettingsOK" "add_click" ({ + Save-ADMXSettings + + Show-ModalObject + }) + + + Add-XamlEvent $script:settingsForm "btnADMXPreviousSetting" "add_click" ({ + if($global:dgADMXCategoryPolicies.SelectedIndex -eq 0) { return } + Save-ADMXSettings + $global:dgADMXCategoryPolicies.SelectedIndex = $global:dgADMXCategoryPolicies.SelectedIndex - 1 + Set-ADMXSettingButtonsStatus + Set-ADMXSettingProperties $global:dgADMXCategoryPolicies.SelectedItem + }) + + Add-XamlEvent $script:settingsForm "btnADMXNextSetting" "add_click" ({ + if($global:dgADMXCategoryPolicies.SelectedIndex -eq ($global:dgADMXCategoryPolicies.ItemsSource.Count - 1)) { return } + Save-ADMXSettings + $global:dgADMXCategoryPolicies.SelectedIndex = $global:dgADMXCategoryPolicies.SelectedIndex + 1 + Set-ADMXSettingButtonsStatus + Set-ADMXSettingProperties $global:dgADMXCategoryPolicies.SelectedItem + }) + + Add-XamlEvent $script:settingsForm "btnADMXSettingsCancel" "add_click" ({ + $global:grdADMXElements.Children.Clear() + $script:settingsForm = $null + Show-ModalObject + }) + + $global:rbADMXSettingEnabled.Add_Checked({ + $script:curItemSettingStatus = 1 + Set-ADMXControlStatus + }) + + $global:rbADMXSettingDisabled.Add_Checked({ + $script:curItemSettingStatus = 0 + Set-ADMXControlStatus + }) + + $global:rbADMXSettingNotConfigured.Add_Checked({ + $script:curItemSettingStatus = $null + Set-ADMXControlStatus + }) + + $global:chkADMXManualConfig.Add_Click({ + Set-ADMXControlStatus + }) + + $global:tcADMXPolicyConfig.Add_SelectionChanged({ + param($sender, $e) + + if($e.AddedItems[0] -eq $global:tabADMXSettings) + { + if($global:dgADMXSettings.SelectedItem.ManualConfig -ne 1) + { + $global:txtADMXSettings.Text = Get-ADMXSettingsString $script:settingsForm.DataContext + } + } + }) + + Show-ModalForm $settingObj.Name $script:settingsForm -HideButtons +} + +function Save-ADMXSettings +{ + if($global:chkADMXManualConfig.IsChecked) + { + $script:settingsForm.DataContext.PolicySettings = $global:txtADMXSettings.Text + } + else + { + $script:settingsForm.DataContext.PolicySettings = Get-ADMXSettingsString $script:settingsForm.DataContext + } + $script:settingsForm.DataContext.ManualConfig = (?: ($global:chkADMXManualConfig.IsChecked) 1 0) + $script:settingsForm.DataContext.SettingStatus = $script:curItemSettingStatus + Set-ADMXSettingStatusText $script:settingsForm.DataContext + [System.Windows.Data.CollectionViewSource]::GetDefaultView($global:dgADMXCategoryPolicies.ItemsSource).Refresh() + $global:grdADMXElements.Children.Clear() +} + +function Set-ADMXSettingButtonsStatus +{ + $global:btnADMXPreviousSetting.IsEnabled = $global:dgADMXCategoryPolicies.SelectedIndex -gt 0 + $global:btnADMXNextSetting.IsEnabled = $global:dgADMXCategoryPolicies.SelectedIndex -lt ($global:dgADMXCategoryPolicies.ItemsSource.Count - 1) +} + +function Set-ADMXSettingProperties +{ + param($settingObj) + + $global:grdADMXElements.Children.Clear() + + $script:curItemSettingStatus = $settingObj.SettingStatus + if($settingObj.SettingStatus -eq 0) + { + $global:rbADMXSettingDisabled.IsChecked = $true + } + elseif($settingObj.SettingStatus -eq 1) + { + $global:rbADMXSettingEnabled.IsChecked = $true + } + else + { + $global:rbADMXSettingNotConfigured.IsChecked = $true + } + + $global:txtADMXSettings.Text = $settingObj.PolicySettings + + $global:chkADMXManualConfig.IsChecked = $settingObj.ManualConfig + + if(-not $settingObj.PolicyDefinition) + { + $settingObj.PolicyDefinition = Format-XML $settingObj.Definition.OuterXml + } + + if(-not $settingObj.supportedOn -and $settingObj.Definition.supportedOn.ref) + { + $settingObj.supportedOn = ($script:supportedOn | Where Id -eq $settingObj.Definition.supportedOn.ref.Split(':')[-1]).DisplayName + } + + Set-ADMXElementsPanel $settingObj + + $script:settingsForm.DataContext = $settingObj + + Set-ADMXControlStatus +} + +function Set-ADMXControlStatus +{ + $global:grdADMXElements.IsEnabled = ($script:curItemSettingStatus -eq 1 -and $global:chkADMXManualConfig.IsChecked -eq $false) + $global:txtADMXSettings.IsReadOnly = ($script:curItemSettingStatus -ne 1 -or $global:chkADMXManualConfig.IsChecked -eq $false) +} + +function Start-AdmxLoadFile +{ + param($fileName) + + $script:xmlNS = $null + $script:xmlNSPrefix = $null + + $script:admx = $null + $script:admxPolicies = @() + $script:supportedOn = @() + $script:admxPoliciesHT = @{} + $script:categoryPaths = @{} + + $global:txtADMXProfileName.Text = "" + $global:txtADMXProfileDescription.Text = "" + $global:txtADMXPolicyFileName.Text = "" + $global:btnADMXLoadADML.IsEnabled = $false + $global:txtADMXPolicyIngestName.Text = "" + $global:txtADMXPolicyAppName.Text = $null + + $admxFI = [IO.FileInfo]$fileName + if($admxFI.Exists -eq $false) { return } + + $admlFile = [IO.Path]::Combine($admxFi.DirectoryName, "en-US\$($admxFi.BaseName).adml") + if([IO.File]::Exists($admlFile) -eq $false) + { + $admlFile = [IO.Path]::Combine($admxFi.DirectoryName, "$($admxFi.BaseName).adml") + } + + if([IO.File]::Exists($admlFile) -eq $false) + { + Write-Log "Could not find an ADML file" 2 + $admlFile = $null + } + + try + { + Write-Log "Load ADMX file $fileName" + [xml]$script:admxXML = Get-Content $fileName + + $namespace = $script:admxXML.DocumentElement.NamespaceURI + if($namespace) + { + $script:xmlNS = New-Object System.Xml.XmlNamespaceManager($script:admxXML.NameTable) + $script:xmlNS.AddNamespace("ns", $namespace) + $script:xmlNSPrefix = "ns:" + } + else + { + $script:xmlNS = $null + $script:xmlNSPrefix = "" + } + + $prefix = $script:admxXML.policyDefinitions.policyNamespaces.SelectSingleNode("$($script:xmlNSPrefix)target[@prefix]",$script:xmlNS) + if($prefix) + { + if($prefix.namespace) + { + $policyId = $prefix.namespace.Split('.')[-1] + } + else + { + $policyId = $prefix.prefix + } + } + else + { + $policyId = $tmpFI.BaseName -replace " ","" + Write-Log "Failed to get policy id from XML. Using file base name" 2 + } + $global:txtADMXPolicyAppName.Text = $policyId + + $global:txtADMXPolicyFileName.Text = $policyId + } + catch + { + Write-LogError "Failed to load ADMX file" $_.Exception + } + + $global:btnADMXLoadADML.IsEnabled = $true + + Invoke-LoadADMXSettings $admlFile +} + +function Invoke-LoadADMXSettings +{ + param($admlFile) + + $script:lngADML = $null + + if($admlFile -and [IO.File]::Exists($admlFile)) + { + try + { + Write-Log "Load ADML file $admlFile" + [xml]$script:lngADML = Get-Content $admlFile + } + catch + { + Write-LogError "Failed to load ADML file $admlFile" $_.Exception + } + } + + $script:stringTable = @{} + foreach($strNode in $script:lngADML.policyDefinitionResources.resources.stringTable.string) + { + $script:stringTable.Add($strNode.id, $strNode.'#text') + } + + $script:supportedOn = @() + foreach($polObj in $script:admxXML.policyDefinitions.supportedOn.definitions.definition) + { + $script:supportedOn += [PSCustomObject]@{ + Id=$polObj.Name + DisplayName=(Get-ADMXADMLString $polObj) + } + } + + if($script:windowsADML) + { + foreach($winString in ($script:windowsADML.policyDefinitionResources.resources.stringTable.string | Where Id -like "SUPPORTED_*")) + { + $script:supportedOn += [PSCustomObject]@{ + Id=$winString.id + DisplayName=$winString.'#text' + } + } + } + + $devicePolicies = @() + $userPolicies = @() + + foreach($polObj in $script:admxXML.policyDefinitions.policies.policy) + { + $displayName = $null + $description = $null + $category = $null + $curSetting = $null + + if($polObj.parentCategory.ref) + { + $category = Get-ADMXCategoryNamePath $polObj.parentCategory.ref "/" + } + + $displayName = Get-ADMXADMLString $polObj + + $description = Get-ADMXADMLString $polObj "explainText" + + if($polObj.Class -eq "Both") + { + $classArr = @("Device","User") + } + elseif($polObj.Class -eq "Machine") + { + $classArr = "Device" + } + + $settingExists = $false + foreach($class in $classArr) + { + #This will happen when loading a new ADML file + $tmpName = ($polObj.Name + "_" + $class) + if($script:admxPoliciesHT.ContainsKey($tmpName)) + { + $curSetting = $script:admxPoliciesHT[$tmpName] + + foreach($tmpSetting in $curSetting) + { + $settingExists = $true + $curSetting.Name = $displayName + $curSetting.Description = $description + } + } + } + + if($settingExists -eq $false) + { + if($polObj.Class -eq "Both") + { + $classArr = @("Device","User") + } + elseif($polObj.Class -eq "Machine") + { + $classArr = "Device" + } + else + { + $classArr = $polObj.Class + } + + foreach($class in $classArr) + { + $newSetting = [PSCustomObject]@{ + Name = $displayName + Description = $description + OMAURIName = $null + OMAURIDescription = $null + Category = $category + CategoryId = $polObj.parentCategory.ref + Id = $polObj.Name + Definition = $polObj + SettingStatus = $null + SettingStatusText = $null + PolicySettings = $null + PolicyDefinition = $null #Format-XML $polObj.OuterXml + ElementsPanel = $null + ManualConfig = $false + SettingClass = $class + SupportedOn = $null + } + + $script:admxPoliciesHT.Add(($polObj.Name + "_" + $class), $newSetting) + $script:admxPolicies += $newSetting + if($newSetting.SettingClass -eq "User") + { + $userPolicies += $newSetting + } + else + { + $devicePolicies += $newSetting + } + } + } + } + + $script:admxPolicies | foreach-object { Set-ADMXSettingStatusText $_ } + + $script:admxPolicies = $script:admxPolicies | Sort -Property Name + + $global:tvADMXCategories.Items.Clear() + + $treeItems = @() + + $tvItem = [PSCustomObject]@{ + Name = "Computer Configuration" + Children = @() + } + + if($script:admxXML.policyDefinitions.policies) + { + $policies = $script:admxXML.policyDefinitions.policies.SelectNodes("$($script:xmlNSPrefix)policy[@class = 'Both' or @class = 'Machine']", $script:xmlNS) + if($policies) + { + $categories = $policies.parentCategory | Select ref -Unique + Add-ADMXCategories $categories $tvItem "Device" + } + } + + $treeItems += $tvItem + + $tvItem = [PSCustomObject]@{ + Name = "User Configuration" + Children = @() + } + + if($script:admxXML.policyDefinitions.policies) + { + $policies = $script:admxXML.policyDefinitions.policies.SelectNodes("$($script:xmlNSPrefix)policy[@class = 'Both' or @class = 'User']", $script:xmlNS) + if($policies) + { + $categories = $policies.parentCategory | Select ref -Unique + Add-ADMXCategories $categories $tvItem "User" + } + } + + $treeItems += $tvItem + + $treeItems | foreach-object { Add-ADMXCategoryTreeNode $_ $global:tvADMXCategories } + + if($devicePolicies.Count -gt 0) + { + $tvItem = [System.Windows.Controls.TreeViewItem]::new() + $tvItem.Header = "All Policies" + $tvItem.Tag = $devicePolicies + $tvItem | Add-Member -MemberType NoteProperty -Name "AllPolicies" -Value $true + $global:tvADMXCategories.Items[0].Items.Add($tvItem) | Out-Null + } + + if($userPolicies.Count -gt 0) + { + $tvItem = [System.Windows.Controls.TreeViewItem]::new() + $tvItem.Header = "All Policies" + $tvItem.Tag = $userPolicies + $tvItem | Add-Member -MemberType NoteProperty -Name "AllPolicies" -Value $true + } + + $global:tvADMXCategories.Items[1].Items.Add($tvItem) | Out-Null +} + +function Set-ADMXSettingStatusText +{ + param($settingObj) + + if($settingObj.SettingStatus -eq 0) + { + $settingObj.SettingStatusText = "Disabled" + } + elseif($settingObj.SettingStatus -eq 1) + { + $settingObj.SettingStatusText = "Enabled" + } + else + { + $settingObj.SettingStatusText = "Not Configured" + } +} +function Add-ADMXCategories +{ + param($categories, $parent, $settingClass) + + foreach($cat in $categories.ref) + { + $catPath = Get-ADMXCategoryIdPath $cat + + $tvObj = $parent + foreach($catName in $catPath.Split('/')) + { + $curParent = $tvObj.Children | Where { $_.CategoryNode.name -eq $catName } + if(-not $curParent) + { + $cat = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($catName)']",$script:xmlNS) + $curParent += [PSCustomObject]@{ + Name = Get-ADMXADMLString $cat + CategoryName = $catName + CategoryNode = $cat + SettingClass = $settingClass + Children = @() + } + + $tvObj.Children += $curParent + } + $tvObj = $curParent + } + } +} + +Function Add-ADMXCategoryTreeNode +{ + Param($obj, $parent) + + $tvItem = [System.Windows.Controls.TreeViewItem]::new() + $tvItem.Header = $obj.Name + $tvItem.Tag = $obj + $parent.Items.Add($tvItem) | Out-Null + + $obj.Children | Sort -Property Name | foreach-object { Add-ADMXCategoryTreeNode $_ $tvItem } +} + +function Get-ADMXADMLString +{ + param($xmlNode, $property = "displayName") + + $propValue = $xmlNode.$property + + if(-not $script:lngADML -or -not $xmlNode.$property) { return $propValue} + + $tmpNode = $null + + if($xmlNode.$property.StartsWith("`$(") ) + { + $tmp = $xmlNode.$property.SubString(2, $xmlNode.$property.Length - 3) + $type,$strId = $tmp.Split('.') + } + else + { + $strId = $propValue + } + + if($script:stringTable.ContainsKey($strId)) + { + # Way quicker to use a hash table over querying all items + $propValue = $script:stringTable[$strId] + } + else + { + $propValue = $tmpNode."#text" + } + + $propValue +} + +function Get-ADMXADMLPresentationString +{ + param($presentationInfo, $xmlNode) + + $tmp = $null + + if(-not $script:lngADML) { return $tmp } + + $presentationNode = $presentationInfo.selectSingleNode("./*[@refId='$($xmlNode.id)']") + if($presentationNode) + { + $tmp = ?? $presentationNode.Label.'#text' $presentationNode.'#text' + } + else + { + $tmp = $xmlNode.id + } + $tmp +} + +function Get-ADMXCategoryIdPath +{ + param($categoryId, $delimiter = "/") + + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($categoryId)']",$script:xmlNS) + + $categories = @() + while($catObj) + { + $categories += $catObj.name + if($catObj.parentCategory.ref) + { + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($catObj.parentCategory.ref)']",$script:xmlNS) + } + else + { + break + } + } + + [array]::Reverse($categories) + + $categories -join $delimiter +} + +function Get-ADMXCategoryNamePath +{ + param($categoryId, $delimiter = "/") + + if($script:categoryPaths.ContainsKey($categoryId)) + { + return $script:categoryPaths[$categoryId] + } + + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($categoryId)']",$script:xmlNS) + + $categories = @() + while($catObj) + { + $categories += Get-ADMXADMLString $catObj + if($catObj.parentCategory.ref) + { + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($catObj.parentCategory.ref)']", $script:xmlNS) + } + else + { + break + } + } + + [array]::Reverse($categories) + + $catPath = $categories -join $delimiter + + $script:categoryPaths.Add($categoryId, $catPath) + + $catPath +} + +function Invoke-ADMXFilterPolicies +{ + param($txtBox) + + $filter = $null + + if($txtBox.Text.Trim() -eq "" -and $txtBox.IsFocused -eq $false) + { + $txtBox.FontStyle = "Italic" + $txtBox.Tag = 1 + $txtBox.Text = "Filter" + $txtBox.Foreground="Lightgray" + } + else + { + if($txtBox.Tag -eq "1" -and $txtBox.Text -eq "Filter" -and $txtBox.IsFocused -eq $false) { return } + $txtBox.FontStyle = "Normal" + $txtBox.Tag = $null + $txtBox.Foreground="Black" + $txtBox.Background="White" + + if($txtBox.Text) + { + $filter = { + param ($item) + return ($item.Name -match [regex]::Escape($txtBox.Text)) + } + } + } + + if($global:dgADMXSettings.ItemsSource -is [System.Windows.Data.ListCollectionView]) + { + # This causes odd behaviour with focus e.g. and item has to be clicked twice to be selected + $global:dgADMXSettings.ItemsSource.Filter = $filter + $global:dgADMXSettings.ItemsSource.Refresh() + } +} + +function Get-ADMXPresentationNode +{ + param($item) + + $presentation = $null + + if($item.Definition.presentation -and $script:lngADML) + { + if($item.Definition.presentation.StartsWith("`$(") ) + { + $tmp = $item.Definition.presentation.SubString(2, $item.Definition.presentation.Length - 3) + $type,$strId = $tmp.Split('.') + $presentation = $script:lngADML.policyDefinitionResources.resources.presentationTable.presentation | Where Id -eq $strId #selectSingleNode("presentation[@id='$($strId)']") + } + else + { + $presentation = $script:lngADML.policyDefinitionResources.resources.presentationTable | Where Id -eq $item.Definition.presentation #.selectSingleNode("presentation[@id='$($item.Definition.presentation)']") + } + } + $presentation +} + +function Set-ADMXElementsPanel +{ + param($item) + + if(-not $item.Definition.elements) { return } + + if(-not $item.ElementsPanel) + { + $grd = [System.Windows.Controls.Grid]::new() + $presentation = Get-ADMXPresentationNode $item + $i = 0 + + if($presentation) + { + # Policy node schema + # https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-gpreg/81a89003-5121-4216-b788-fde8daa71c78 + foreach($presentationNode in $presentation.ChildNodes) + { + $ctrl = $null + + $elementNode = $item.Definition.elements.ChildNodes | Where id -eq $presentationNode.refId #selectSingleNode("/*[@id='$($presentationNode.refId)']") + if($presentationNode.Label.'#text') + { $stringLabel = $presentationNode.Label.'#text' } + elseif($presentationNode.Label) + { $stringLabel = $presentationNode.Label } + else + { $stringLabel = $presentationNode.'#text' } + + if($stringLabel -and $presentationNode.LocalName -ne "CheckBox") #$presentationNode.LocalName -eq "text") + { + $ctrl = [System.Windows.Controls.TextBlock]::new() + $ctrl.Text = $stringLabel #$presentationNode."#text" + Add-GridObject $grd $ctrl + } + + if($presentationNode.LocalName -eq "text") + { + continue + } + + if($ctrl) + { + $ctrl.Margin = "0,5,0,0" + } + + if($presentationNode.LocalName -eq "textbox") + { + $ctrl = [System.Windows.Controls.TextBox]::new() + if($presentationNode.defaultValue -ne $null) + { + $ctrl.Text = $presentationNode.defaultValue + } + } + elseif($presentationNode.LocalName -eq "DecimalTextBox" -or + $presentationNode.LocalName -eq "LongDecimalTextBox" ) + { + $ctrl = Get-NumericUpDownControl $presentationNode.refId (?? $elementNode.minValue 0) (?? $elementNode.maxValue 9999) (?? $elementNode.SpinStep 1) + if(-not $ctrl) { continue } + if($presentationNode.defaultValue -ne $null) + { + $ctrl.Children[0].Text = $presentationNode.defaultValue + } + } + elseif($presentationNode.LocalName -eq "multiText") + { + $ctrl = [System.Windows.Controls.TextBox]::new() + $ctrl.Height = 100 + $ctrl.AcceptsReturn = $true + } + elseif($presentationNode.LocalName -eq "CheckBox") + { + $ctrl = [System.Windows.Controls.CheckBox]::new() + $ctrl.Content = $stringLabel + if($presentationNode.defaultChecked -eq $true) + { + $ctrl.IsChecked = $true + } + } + elseif($presentationNode.LocalName -eq "ComboBox" -or + $presentationNode.LocalName -eq "DropdownList" ) + { + $ctrl = [System.Windows.Controls.ComboBox]::new() + $ctrl.DisplayMemberPath = "Name" + $ctrl.SelectedValuePath = "Value" + + $valItems = @() + foreach($valItem in $elementNode.ChildNodes) + { + $displayName = Get-ADMXADMLString $valItem + + if($valItem.value.decimal.value) + { + $value = $valItem.value.decimal.value + } + elseif($valItem.value.longDecimal) + { + $value = $valItem.value.longDecimal.'#text' + } + elseif($valItem.value.string) + { + $value = $valItem.value.string.'#text' + } + else + { + Write-Log "Unsupported value type for $($elementNode.Id): $($valItem.value.InnerXml)" 2 + $value = "" + } + $valItems += [PSCustomObject]@{ + Name = $displayName + Value = $value + } + } + + if($presentationNode.defaultItem -ne $null) + { + try + { + $ctrl.SelectedIndex = $presentationNode.defaultItem + } + catch {} + } + + if($presentationNode.NoSort -ne "true") + { + $valItems = $valItems | Sort -Property Name + } + + $ctrl.ItemsSource = $valItems + } + elseif($presentationNode.LocalName -eq "listBox") + { + $ctrl = [System.Windows.Controls.DataGrid]::new() + $ctrl.CanUserAddRows = $true + $ctrl.CanUserDeleteRows = $true + $ctrl.CanUserSortColumns = $false + $ctrl.CanUserResizeRows = $false + $ctrl.AutoGenerateColumns = $false + $ctrl.ColumnWidth = [System.Windows.Controls.DataGridLength]"*" + + $column = [System.Windows.Controls.DataGridTextColumn]::new() + $column.Header = "Value Name" + $column.Width = [System.Windows.Controls.DataGridLength]"1*" + $binding = [System.Windows.Data.Binding]::new("Key") + $column.Binding = $binding + if($elementNode.explicitValue -ne "true") + { + $column.Visibility = "Collapsed" + } + $ctrl.Columns.Add($column) + + $column = [System.Windows.Controls.DataGridTextColumn]::new() + $column.Header = "Value" + $column.Width = [System.Windows.Controls.DataGridLength]"1*" + $binding = [System.Windows.Data.Binding]::new("Value") + $column.Binding = $binding + $ctrl.Columns.Add($column) + + $ctrl.ItemsSource = [System.Collections.Generic.List[ListValue]]::new() + } + else + { + Write-Log "Unsupported object type in presentation: $($presentationNode.LocalName). Control: $presentationNode.refId" 2 + continue + } + + Add-GridObject $grd $ctrl + + if($presentationNode.refId) + { + $ctrl.Tag = $elementNode + $ctrl.Name = $presentationNode.refId + } + } + } + elseif($item.Definition.elements.ChildNodes) + { + # This should NOT be used. Presentation settings should be defined in the ADML file + Write-Log "No presentation settings found for $($item.Definition.Name)" 2 + foreach($elementNode in $item.Definition.elements.ChildNodes) + { + try + { + $ctrl = $null + if($elementNode.LocalName -eq "text") + { + $ctrl = [System.Windows.Controls.TextBox]::new() + } + elseif($elementNode.LocalName -eq "multiText") + { + $ctrl = [System.Windows.Controls.TextBox]::new() + $ctrl.Height = 100 + $ctrl.AcceptsReturn = $true + } + elseif($elementNode.LocalName -eq "enum") + { + $ctrl = [System.Windows.Controls.ComboBox]::new() + $ctrl.DisplayMemberPath = "Name" + $ctrl.SelectedValuePath = "Value" + + $valItems = @() + foreach($valItem in $elementNode.ChildNodes) + { + $displayName = Get-ADMXADMLString $valItem + + if($valItem.value.decimal.value) + { + $value = $valItem.value.decimal.value + } + elseif($valItem.value.string) + { + $value = $valItem.value.string.'#text' + } + else + { + Write-Log "Unsupported value type for $($elementNode.Id): $($valItem.value.InnerXml)" 2 + $value = "" + } + $valItems += [PSCustomObject]@{ + Name = $displayName + Value = $value + } + } + $ctrl.ItemsSource = $valItems + } + elseif($elementNode.LocalName -eq "list") + { + $ctrl = [System.Windows.Controls.DataGrid]::new() + $ctrl.CanUserAddRows = $true + $ctrl.CanUserDeleteRows = $true + $ctrl.CanUserSortColumns = $false + $ctrl.CanUserResizeRows = $false + $ctrl.ColumnWidth = [System.Windows.Controls.DataGridLength]::Auto + $ctrl.AutoGenerateColumns = $false + $ctrl.ColumnWidth = [System.Windows.Controls.DataGridLength]"*" + + $column = [System.Windows.Controls.DataGridTextColumn]::new() + $column.Header = "Value Name" + $column.Width = [System.Windows.Controls.DataGridLength]"1*" + $binding = [System.Windows.Data.Binding]::new("Key") + $column.Binding = $binding + if($elementNode.explicitValue -ne "true") + { + $column.Visibility = "Collapsed" + } + $ctrl.Columns.Add($column) + + $column = [System.Windows.Controls.DataGridTextColumn]::new() + $column.Header = "Value" + $column.Width = [System.Windows.Controls.DataGridLength]"1*" + $binding = [System.Windows.Data.Binding]::new("Value") + $column.Binding = $binding + $ctrl.Columns.Add($column) + + $ctrl.ItemsSource = [System.Collections.Generic.List[ListValue]]::new() + } + elseif($elementNode.LocalName -eq "decimal") + { + $ctrl = [System.Windows.Controls.TextBox]::new() + } + elseif($elementNode.LocalName -eq "boolean") + { + $ctrl = [System.Windows.Controls.ComboBox]::new() + } + else + { + Write-Log "Element type not supported: $($elementNode.LocalName)" 2 + continue + } + + $displayName = Get-ADMXADMLPresentationString $presentation $elementNode + + if($displayName) + { + $rd = [System.Windows.Controls.RowDefinition]::new() + $rd.Height = [double]::NaN #[System.Windows.GridLength]::Auto + $grd.RowDefinitions.Add($rd) + + $tb = [System.Windows.Controls.TextBlock]::new() + if($i -gt 0) { $tb.Margin = "0,5,0,0" } + $tb.Text = $displayName + $tb.SetValue([System.Windows.Controls.Grid]::RowProperty,$i) + $grd.Children.Add($tb) + + $i++ + } + + $rd = [System.Windows.Controls.RowDefinition]::new() + $rd.Height = [double]::NaN + $grd.RowDefinitions.Add($rd) + + $ctrl.SetValue([System.Windows.Controls.Grid]::RowProperty,$i) + $ctrl.Tag = $elementNode + $ctrl.Name = $elementNode.Id + $grd.Children.Add($ctrl) + + #$grd.RegisterName($ctrl.Name, $ctrl) + + $i++ + } + catch + { + Write-LogError "Failed to add ADMX element $($elementNode.LocalName) with id $($elementNode.id)" $_.Exception + } + } + } + $rd = [System.Windows.Controls.RowDefinition]::new() + #$rd.Height = [System.Windows.GridLength]::new(1, "Star") + $grd.RowDefinitions.Add($rd) + $item.ElementsPanel = $grd + } + + if($item.ElementsPanel) + { + $global:grdADMXElements.Children.Add($item.ElementsPanel) + foreach($elementNode in $item.Definition.elements.ChildNodes) + { + $ctrl = [System.Windows.LogicalTreeHelper]::FindLogicalNode($item.ElementsPanel, $elementNode.Id) + if(-not $ctrl) + { + Write-Log "Could not find a control with id $($elementNode.Id)" 3 + continue + } + #$global:grdADMXElements.RegisterName($ctrl.Name, $ctrl) + } + } +} + +function Get-ADMXSettingsString +{ + param($item) + + if(-not $item -or -not $item.Definition.elements) { return } + + if($script:curItemSettingStatus -ne 1) + { + $item.PolicySettings = $null + return + } + + $policySettings = @() + foreach($elementNode in $item.Definition.elements.ChildNodes) + { + #$ctrl = $item.ElementsPanel.FindName($elementNode.Id) + $ctrl = [System.Windows.LogicalTreeHelper]::FindLogicalNode($item.ElementsPanel, $elementNode.Id) + if(-not $ctrl) + { + Write-Log "Could not find a control with id $($elementNode.Id)" 3 + continue + } + $ctrlValue = $null + + if($elementNode.LocalName -eq "text") + { + $ctrlValue = $ctrl.Text + } + elseif($elementNode.LocalName -eq "multiText") + { + $ctrlValue = $ctrl.Text -replace [Environment]::NewLine,"" + } + elseif($elementNode.LocalName -eq "enum") + { + $ctrlValue = $ctrl.SelectedValue + } + elseif($elementNode.LocalName -eq "list") + { + $i = 1 + $keyValueArr = @() + foreach($keyValue in $ctrl.ItemsSource) + { + if(-not $keyValue.Value) { continue } + $keyValueArr += "$((?? $keyValue.Key $i))$($keyValue.Value)" + $i++ + } + $ctrlValue = $keyValueArr -join "" + } + elseif($elementNode.LocalName -eq "decimal" -or + $ctrl.Tag.LocalName -eq "longDecimal") + { + $ctrlValue = $ctrl.Children[0].Text + } + elseif($elementNode.LocalName -eq "boolean") + { + if($ctrl -is [System.Windows.Controls.CheckBox]) + { + $ctrlValue = ?: $ctrl.IsChecked "1" "0" + if($ctrl.IsChecked -eq $false) + { + #continue # GPO setting skips unchecked checkbox. + } + } + elseif($ctrl -is [System.Windows.Controls.ComboBox]) + { + $ctrlValue = $ctrl.SelectedValue + } + else + { + Write-Log "Boolean element type not supported: $($elementNode.LocalName)" 2 + continue + } + } + else + { + Write-Log "Element type not supported: $($elementNode.LocalName)" 2 + continue + } + + if(-not $ctrlValue) + { + if($elementNode.required -eq $true) + { + Write-Log "Required value is missing for $($elementNode.Id)" 3 + } + else + { + Write-Log "Value not set for $($elementNode.Id). Value will not be added" + } + continue + } + + $policySettings += "" + } + $policySettings -join [Environment]::NewLine # Or ""? +} + +function Get-ADMXCategoryOMAURIPath +{ + param($categoryId) + + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($categoryId)']",$script:xmlNS) + + $categories = @() + while($catObj) + { + $categories += $catObj.name + $catObj = $script:admxXML.policyDefinitions.categories.selectSingleNode("$($script:xmlNSPrefix)category[@name='$($catObj.parentCategory.ref)']",$script:xmlNS) + } + + [array]::Reverse($categories) + + $categories -join "~" +} + +function Import-ADMXPolicy +{ + if(-not $global:txtADMXProfileName.Text.Trim()) + { + [System.Windows.MessageBox]::Show("Profile Name name must be specified", "Error", "OK", "Error") + return + } + + if(-not $global:txtADMXPolicyFileName.Text.Trim()) + { + [System.Windows.MessageBox]::Show("ADMX Policy Name name must be specified", "Error", "OK", "Error") + return + } + + $admxConfiguredSettings = @() + + foreach($admxPolicy in $($script:admxPolicies | Where { $_.SettingStatus -eq 0 -or $_.SettingStatus -eq 1 })) + { + if($admxPolicy.SettingStatus -eq 0) + { + $policyValue = "" + } + else + { + $policyValue = "" + + $strValue = $admxPolicy.PolicySettings + + if($strValue) + { + $policyValue += "`n`n$strValue" + } + } + + $catPath = Get-ADMXCategoryOMAURIPath $admxPolicy.Definition.parentCategory.ref + + $omaUriPath = "./$($admxPolicy.SettingClass)/Vendor/MSFT/Policy/Config/$($global:txtADMXPolicyAppName.Text)~Policy~$catPath/$($admxPolicy.Definition.name)" + + if($admxPolicy.OMAURIDescription) + { + $desc = $admxPolicy.OMAURIDescription + } + elseif($admxPolicy.Description -and $admxPolicy.Description.Length -gt 1000) + { + $desc = $admxPolicy.Description.SubString(0,1000) + } + else + { + $desc = $admxPolicy.Description + } + + $admxConfiguredSettings += [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.omaSettingString" + "displayName" = (?? $admxPolicy.OMAURIName $admxPolicy.Name) + "description" = $desc + "omaUri" = $omaUriPath + "value" = $policyValue + } + } + + $intuneObj = [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.windows10CustomConfiguration" + "displayName" = $global:txtADMXProfileName.Text + "omaSettings" = @() + "roleScopeTagIds" = @() + "assignments" = @() + } + + if($global:txtADMXProfileDescription.Text) + { + $intuneObj | Add-Member -MemberType NoteProperty -Name "description" -Value $global:txtADMXProfileDescription.Text + } + + if($global:chkADMXPolicyIngest.IsChecked) + { + $intuneObj.omaSettings += [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.omaSettingString" + "displayName" = (?? $global:txtADMXPolicyIngestName.Text ("$($script:currentADMXFile.Name) Ingestion")) + "description" = $null + "omaUri" = "./Device/Vendor/MSFT/Policy/ConfigOperations/ADMXInstall/$($global:txtADMXPolicyAppName.Text)/Policy/$($global:txtADMXPolicyFileName.Text)" + "value" = (Format-XML $script:admxXML) + } + } + + $intuneObj.omaSettings += $admxConfiguredSettings + + $json = $intuneObj | ConvertTo-Json -Depth 20 + + $obj = Invoke-GraphRequest -Url "/deviceManagement/deviceConfigurations" -Body $json -Method "POST" + + if($obj) + { + Write-Log "Device configuration profile '$($intuneObj.displayName)' created with id $($obj.Id)" + } + else + { + $text = "Failed to create device configuration profile '$($intuneObj.displayName)'" + Write-Log $text 3 + [System.Windows.MessageBox]::Show(($text + [Environment]::NewLine + [Environment]::NewLine + 'Check log for errors'), "Error!", "OK", "Error") + } +} + +#endregion + +#region Reg Values +function Show-ADMXRegValues +{ + if(-not $script:frmADMXRegProfile) + { + $script:frmADMXRegProfile = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerToolsADMXRegValues.xaml") -AddVariables + + if(-not $script:frmADMXRegProfile) { return } + + $global:cbADMXRegPolicyType.ItemsSource = @( + [PSCustomObject]@{ + Name = "Policy" + Value = "Policy" + }, + [PSCustomObject]@{ + Name = "Preference" + Value = "Preference" + } + ) + + $script:ADMXRegProfile = [ADMXRegProfile]::new() + $script:frmADMXRegProfile.DataContext = $script:ADMXRegProfile + + $global:btnADMXRegClear.Add_Click({ + $script:addedRegValues.Clear() + $global:txtADMXRegProfileName.Text = "" + $global:txtADMXRegProfileDescription.Text = "" + $global:cbADMXRegPolicyType.SelectedValue = $null + }) + + $global:dgADMXRegAddedPolicies.Add_MouseDoubleClick({ + if(-not $this.SelectedItem) { return } + Show-ADMXRegSettings $this.SelectedItem + }) + + $global:mnuADMXRegPoliciesContextMenu.Add_Opened({ + $global:mnuADMXRegPolicyEdit.IsEnabled = $null -ne $global:dgADMXRegAddedPolicies.SelectedItem + }) + + $global:mnuADMXRegPolicyEdit.Add_Click({ + if(-not $global:dgADMXRegAddedPolicies.SelectedItem) { return } + Show-ADMXRegSettings $global:dgADMXRegAddedPolicies.SelectedItem + }) + + $global:btnADMXAddRegValue.Add_Click({ + Show-ADMXRegSettings + }) + + $global:btnADMXRegImport.Add_Click({ + Write-Status "Import Reg Settings Policy" + Import-ADMXRegProfile + Write-Status "" + }) + } + + $global:grdToolsMain.Children.Clear() + $global:grdToolsMain.Children.Add($frmADMXRegProfile) +} + +function Show-ADMXRegSettings +{ + param($regProfile) + + $script:frmADMXRegPolicies = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerToolsADMXAddRegPolicy.xaml") -AddVariables + + if(-not $script:frmADMXRegPolicies) { return } + + $newValue = [ADMXRegPolicyElement]::new() + + if(-not $regProfile) + { + $regProfile = [ADMXRegPolicy]::new() + $script:newRegPolicy = $true + } + else + { + $script:newRegPolicy = $false + } + + $script:frmADMXRegPolicies.DataContext = [PSCustomObject]@{ + RegPolicy = $regProfile + PolicyElement = $newValue + } + + $regHives = @() + + # Should this be listed for preferences? + $regHives += [PSCustomObject]@{ + Name = "HKEY_LOCAL_MACHINE" + Value = "HKLM" + } + + $regHives += [PSCustomObject]@{ + Name = "HKEY_CURRENT_USER" + Value = "HKCU" + } + + $global:cbADMXRegHive.ItemsSource = $regHives + + $global:cbADMXRegPolicyStatus.ItemsSource = @( + [PSCustomObject]@{ + Name = "Enabled" + Value = "Enabled" + }, + [PSCustomObject]@{ + Name = "Disabled" + Value = "Disabled" + } + ) + + $global:dgADMXRegAddedElements.Add_MouseDoubleClick({ + if(-not $this.SelectedItem) { return } + $global:btnADMXRegElementAdd.Visibility = "Collapsed" + $global:btnADMXRegElementNew.Visibility = "Visible" + + $selectedItem = $this.SelectedItem + $tmp = $script:frmADMXRegPolicies.DataContext + $script:frmADMXRegPolicies.DataContext = $null + $tmp.PolicyElement = $selectedItem + $script:frmADMXRegPolicies.DataContext = $tmp + + Set-ADMXRegAttributeControls + + [System.Windows.Forms.Application]::DoEvents() + }) + + $global:cbADMXRegElementDataType.ItemsSource = @( + [PSCustomObject]@{ + Name = "String" + Value = "text" + }, + [PSCustomObject]@{ + Name = "Multi-string" + Value = "multiText" + }, + [PSCustomObject]@{ + Name = "List" + Value = "list" + }, + [PSCustomObject]@{ + Name = "DWORD (32-bit)" + Value = "decimal" + } + # Looks like longDecimal is not supported + #, + #[PSCustomObject]@{ + # Name = "QWORD (64-bit)" + # Value = "longDecimal" + #} + ) + + Add-XamlEvent $script:frmADMXRegPolicies "cbADMXRegElementDataType" "Add_SelectionChanged"({ + Set-ADMXRegAttributeControls + }) + + Add-XamlEvent $script:frmADMXRegPolicies "btnADMXRegElementAdd" "add_click" ({ + + if($global:txtADMXRegElementKey.Text -and (Get-ADMXRegIsKeySupported $global:txtADMXRegElementKey.Text) -eq $false) + { + return + } + + if(-not $script:frmADMXRegPolicies.DataContext.RegPolicy.Key) + { + [System.Windows.MessageBox]::Show("The Key value must be specified for the policy", "Error!","OK", "Error") + return + } + + $newValue = [ADMXRegPolicyElement]::new() + $tmp = $script:frmADMXRegPolicies.DataContext + $script:frmADMXRegPolicies.DataContext = $null + $tmp.RegPolicy.PolicyElements.Add($tmp.PolicyElement) + $tmp.PolicyElement = $newValue + $script:frmADMXRegPolicies.DataContext = $tmp + [System.Windows.Forms.Application]::DoEvents() + }) + + Add-XamlEvent $script:frmADMXRegPolicies "btnADMXRegElementNew" "add_click" ({ + $newValue = [ADMXRegPolicyElement]::new() + $tmp = $script:frmADMXRegPolicies.DataContext + $script:frmADMXRegPolicies.DataContext = $null + #$tmp.RegPolicy.PolicyElements.Add($tmp.PolicyElement) + $tmp.PolicyElement = $newValue + $script:frmADMXRegPolicies.DataContext = $tmp + [System.Windows.Forms.Application]::DoEvents() + $global:btnADMXRegElementAdd.Visibility = "Visible" + $this.Visibility = "Collapsed" + }) + + Add-XamlEvent $script:frmADMXRegPolicies "btnADMXRegAddNew" "add_click" ({ + + if((Get-ADMXRegIsKeySupported $global:txtADMXRegKey.Text) -eq $false) + { + return + } + + if($script:newRegPolicy) + { + $script:frmADMXRegProfile.DataContext.ADMXPolicies.Add($script:frmADMXRegPolicies.DataContext.RegPolicy) + } + + Show-ModalObject + }) + + Add-XamlEvent $script:frmADMXRegPolicies "btnADMXRegCancel" "add_click" ({ + $script:frmADMXRegPolicies = $null + Show-ModalObject + }) + Show-ModalForm "Add new reg policy" $script:frmADMXRegPolicies -HideButtons +} + +function Set-ADMXRegAttributeControls +{ + if($global:cbADMXRegElementDataType.SelectedValue -eq "list" -or $global:cbADMXRegElementDataType.SelectedValue -eq "multiText") + { + $global:spADMXRegAttributeValueSeparator.Visibility = "Visible" + $global:txtADMXRegAttributeValueSeparator.Visibility = "Visible" + } + else + { + $global:spADMXRegAttributeValueSeparator.Visibility = "Collapsed" + $global:txtADMXRegAttributeValueSeparator.Visibility = "Collapsed" + } + + + if($global:cbADMXRegElementDataType.SelectedValue -eq "list") + { + $global:spADMXRegAttributeValuePrefix.Visibility = "Visible" + $global:txtADMXRegAttributeValuePrefix.Visibility = "Visible" + } + else + { + $global:spADMXRegAttributeValuePrefix.Visibility = "Collapsed" + $global:txtADMXRegAttributeValuePrefix.Visibility = "Collapsed" + } + + $global:txtADMXRegElementValueName.IsReadOnly = ($global:cbADMXRegElementDataType.SelectedValue -eq "list") + + if($global:cbADMXRegElementDataType.SelectedValue -eq "text" -or + $global:cbADMXRegElementDataType.SelectedValue -eq "list") + { + $global:spADMXRegAttributeExpandable.Visibility = "Visible" + $global:chkADMXRegAttributeExpandable.Visibility = "Visible" + } + else + { + $global:spADMXRegAttributeExpandable.Visibility = "Collapsed" + $global:chkADMXRegAttributeExpandable.Visibility = "Collapsed" + } + + if($global:cbADMXRegElementDataType.SelectedValue -eq "list") + { + $global:spADMXRegAttributeAdditive.Visibility = "Visible" + $global:chkADMXRegAttributeAdditive.Visibility = "Visible" + } + else + { + $global:spADMXRegAttributeAdditive.Visibility = "Collapsed" + $global:chkADMXRegAttributeAdditive.Visibility = "Collapsed" + } +} + +function Get-ADMXRegIsKeySupported +{ + param($regKey) + + $tmpPath = $regKey.Trim('\') + $tmpPath = $tmpPath + "\" + + $blockedSource = "" + foreach($blockedPath in $script:unsupportedLocations) + { + if($tmpPath -like "$($blockedPath)\*") + { + $blockedSource = $blockedPath + break + } + } + + if($blockedSource) + { + foreach($excemptionPath in $script:unsupportedOverride) + { + if($tmpPath -like "$($excemptionPath)\*") + { + $blockedSource = "" + break + } + } + } + + if($blockedSource) + { + [System.Windows.MessageBox]::Show("The registry key '$($global:txtADMXRegKey.Text)' is not supported" + [Environment]::NewLine + [Environment]::NewLine + "Blocked by root key: $blockedSource", "Unsupported reg ket", "OK", "Error") + return $false + } + return $true +} + +function Import-ADMXRegProfile +{ + $xml = [xml]$script:admxTemplate + + $guidId = [Guid]::NewGuid() + $rgPolicyFileName = ("RegPolicy_" + $guidId) + + $xml.policyDefinitions.categories.category.name = ($xml.policyDefinitions.categories.category.name + "_" + $guidId) + + $intuneObj = [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.windows10CustomConfiguration" + "displayName" = $script:frmADMXRegProfile.DataContext.ProfileName + "omaSettings" = @() + "roleScopeTagIds" = @() + "assignments" = @() + } + + $admxRegSettings = @() + + foreach($regPolicy in $script:frmADMXRegProfile.DataContext.ADMXPolicies) + { + if($regPolicy.PolicyStatus -eq "Enabled") + { + $OMAURIString = "" + } + else + { + $OMAURIString = "" + } + + if($regPolicy.PolicyName) + { + # No space in name + $policyName = $regPolicy.PolicyName -replace " ","_" + } + else + { + $policyName = [Guid]::NewGuid().Guid + } + + #build XML + $newNode = $xml.policyDefinitions.policies.ChildNodes[0].CloneNode($true) + $newNode.name = $policyName + $newNode.class = (?: ($regPolicy.Hive -eq "HKLM") "Machine" "User") + $newNode.displayName = "`$(string.$($policyName))" + $newNode.presentation = "`$(presentation.$($policyName))" + $newNode.key = $regPolicy.Key.Trim('\') + $newNode.parentCategory.ref = $xml.policyDefinitions.categories.category.name + + if(-not $regPolicy.StatusValueName) + { + $newNode.RemoveChild($newNode.SelectSingleNode("enabledValue")) + $newNode.RemoveChild($newNode.SelectSingleNode("disabledValue")) + } + else + { + $newNode.valueName = $regPolicy.StatusValueName + } + + if($regPolicy.PolicyElements -eq $null -or $regPolicy.PolicyElements.Count -eq 0) + { + $newNode.RemoveChild($newNode.SelectSingleNode("elements")) + } + else + { + $omaUriItems = @() + foreach($element in $regPolicy.PolicyElements) + { + $child = $xml.CreateElement($element.DataType) + if($element.DataType -eq "multitext" -or + $element.DataType -eq "list") + { + $splitter = ?? $global:txtADMXRegAttributeValueSeparator.Text ";" + $value = $element.Value -replace $splitter,"" + } + else + { + $value = $element.Value + } + + if($element.DataType -eq "list") + { + # ToDo: + # Add support for additive in UI + Add-XMLAttribute $child "additive" "true" + Add-XMLAttribute $child "valuePrefix" $element.AttributePrefix + } + else + { + Add-XMLAttribute $child "valueName" $element.ValueName + } + + if(($element.DataType -eq "text" -or $element.DataType -eq "list") -and $element.AttributeExpandable) + { + Add-XMLAttribute $child "expandable" "true" + } + + if($element.DataType -eq "list" -and $element.AttributeAdditive) + { + Add-XMLAttribute $child "additive" "true" + } + + if($element.AttributeSoft) + { + Add-XMLAttribute $child "soft" "true" + } + + if($element.DataType -eq "list") + { + $keyStr = ?? $element.Key $regPolicy.Key + if($keyStr) + { + $idStr = $keyStr.Trim("\").Split('\')[-1] + } + else + { + $idStr = [Guid]::NewGuid().Guid + } + Add-XMLAttribute $child "id" ($idStr + "_Id") + } + else + { + Add-XMLAttribute $child "id" ($element.ValueName + "_Id") + } + + if($element.Key) + { + Add-XMLAttribute $child "key" $element.Key.Trim('\') + } + + $omaUriItems += "" + + $newNode.SelectSingleNode("elements").AppendChild($child) | Out-Null + } + } + + if($omaUriItems.Count -gt 0) + { + $OMAURIString = ($OMAURIString + [Environment]::NewLine + [Environment]::NewLine + ($omaUriItems -join [Environment]::NewLine)) + } + + $xml.policyDefinitions.SelectSingleNode("policies").AppendChild($newNode) | Out-Null + + $admxRegSettings += [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.omaSettingString" + "displayName" = "Set $($policyName)" + "omaUri" = "./$((?: ($regPolicy.Hive -eq "HKLM") "Device" "User"))/Vendor/MSFT/Policy/Config/IntuneManagementReg~$(($script:frmADMXRegProfile.DataContext.PolicyType))~$($newNode.parentCategory.ref)/$($policyName)" + "value" = $OMAURIString + } + } + + $xml.policyDefinitions.SelectSingleNode("policies").RemoveChild($xml.policyDefinitions.policies.SelectSingleNode("policy")) | Out-Null + + $intuneObj.omaSettings += [PSCustomObject]@{ + "@odata.type" = "#microsoft.graph.omaSettingString" + "displayName" = "Reg ADMX Ingestion" + "description" = "This XML is generated by Intune Managemet tool" + "omaUri" = "./Device/Vendor/MSFT/Policy/ConfigOperations/ADMXInstall/IntuneManagementReg/$(($script:frmADMXRegProfile.DataContext.PolicyType))/$($rgPolicyFileName)" + "value" = (Format-XML $xml) + } + + $intuneObj.omaSettings += $admxRegSettings + + $json = $intuneObj | ConvertTo-Json -Depth 20 + + $obj = Invoke-GraphRequest -Url "/deviceManagement/deviceConfigurations" -Body $json -Method "POST" + + if($obj) + { + Write-Log "Custom profile '$($intuneObj.displayName)' created with id $($obj.Id)" + } + else + { + $text = "Failed to create device configuration profile '$($intuneObj.displayName)'" + Write-Log $text 3 + [System.Windows.MessageBox]::Show(($text + [Environment]::NewLine + [Environment]::NewLine + 'Check log for errors'), "Error!", "OK", "Error") + } +} + +function Add-XMLAttribute +{ + param($xmlNode, $attribute, $Value) + $xmlAttrib = $xmlNode.OwnerDocument.CreateAttribute($attribute) + $xmlAttrib.Value = $Value + $xmlNode.Attributes.Append($xmlAttrib) +} + +function Add-ADMXRegClasses +{ + if (("ADMXRegPolicyElement" -as [type])) + { + return + } + + $classDef = @" + using System.ComponentModel; + + public class ADMXRegPolicyElement : INotifyPropertyChanged + { + public string DataType { get { return _dataType; } set { _dataType = value; NotifyPropertyChanged("DataType"); NotifyPropertyChanged("DataTypeDisplayString"); } } + private string _dataType = null; + + public string DataTypeDisplayString { get { + if(DataType == "text") + return "String"; + else if(DataType == "multiText") + return "Multi-string"; + else if(DataType == "list") + return "List"; + else if(DataType == "decimal") + return "DWORD (32-bit)"; + else if(DataType == "longDecimal") + return "QWORD (64-bit)"; + else + return DataType; + } } + + public string Key { get { return _key; } set { _key = value; NotifyPropertyChanged("Key"); } } + private string _key; + + public string ValueName { get { return _valueName; } set { _valueName = value; NotifyPropertyChanged("ValueName"); } } + private string _valueName; + + public string Value { get { return _value; } set { _value = value; NotifyPropertyChanged("Value"); } } + private string _value; + + public string AttributePrefix { get { return _attributePrefix; } set { _attributePrefix = value; NotifyPropertyChanged("AttributePrefix"); } } + private string _attributePrefix; + + public bool AttributeSoft { get { return _attributeSoft; } set { _attributeSoft = value; NotifyPropertyChanged("AttributeSoft"); } } + private bool _attributeSoft = false; + + public bool AttributeExpandable { get { return _attributeExpandable; } set { _attributeExpandable = value; NotifyPropertyChanged("AttributeExpandable"); } } + private bool _attributeExpandable = false; + + public bool AttributeAdditive { get { return _attributeAdditive; } set { _attributeAdditive = value; NotifyPropertyChanged("AttributeAdditive"); } } + private bool _attributeAdditive = false; + + public event PropertyChangedEventHandler PropertyChanged; + + // This method is called by the Set accessor of each property. + // The CallerMemberName attribute that is applied to the optional propertyName + // parameter causes the property name of the caller to be substituted as an argument. + private void NotifyPropertyChanged(string propertyName = "") + { + if(PropertyChanged != null) { PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName)); } + } + } + + public class ADMXRegPolicy + { + public string PolicyName {get; set;} + public string PolicyStatus {get; set;} + public string Hive {get; set;} + public string Key {get; set;} + public bool StatusValueEnabled { get; set;} + public string StatusValueName { get; set;} + public System.Collections.ObjectModel.ObservableCollection PolicyElements {get; set;} + + public ADMXRegPolicy() + { + PolicyElements = new System.Collections.ObjectModel.ObservableCollection(); + Hive = "HKLM"; + PolicyStatus = "Enabled"; + StatusValueEnabled = true; + } + } + + public class ADMXRegProfile + { + public string ProfileName {get; set;} + public string ProfileDescription {get; set;} + public string PolicyType {get; set;} + public System.Collections.ObjectModel.ObservableCollection ADMXPolicies {get; set;} + public string XmlString {get; set;} + + public ADMXRegProfile() + { + ADMXPolicies = new System.Collections.ObjectModel.ObservableCollection(); + PolicyType = "Policy"; + } + } +"@ + [Reflection.Assembly]::LoadWithPartialName("System.ComponentModel") | Out-Null + Add-Type -TypeDefinition $classDef -IgnoreWarnings -ReferencedAssemblies @('System.ComponentModel') +} + +#endregion \ No newline at end of file diff --git a/Extensions/MSALAuthentication.psm1 b/Extensions/MSALAuthentication.psm1 index ea341be..0d618a5 100644 --- a/Extensions/MSALAuthentication.psm1 +++ b/Extensions/MSALAuthentication.psm1 @@ -10,7 +10,7 @@ This module manages Authentication for the application with MSAL. It is also res #> function Get-ModuleVersion { - '3.0.4' + '3.0.5' } $global:msalAuthenticator = $null @@ -20,6 +20,7 @@ function Invoke-InitializeModule $global:MSALToken = $null $global:MSALAuthority = $null $script:AccessableTenants = $null + $global:SkipTokenCacheHelperEx = $null $global:appSettingSections += (New-Object PSObject -Property @{ Title = "MSAL" @@ -404,7 +405,15 @@ function Add-MSALPrereq $RequiredAssemblies.Add($msalPath) $RequiredAssemblies.Add('System.Security.dll') - Add-Type -Path ($global:AppRootFolder + "\CS\TokenCacheHelperEx.cs") -ReferencedAssemblies $RequiredAssemblies + try + { + Add-Type -Path ($global:AppRootFolder + "\CS\TokenCacheHelperEx.cs") -ReferencedAssemblies $RequiredAssemblies + } + catch + { + $global:SkipTokenCacheHelperEx = $true + Write-LogError "Failed to compile TokenCacheHelperEx. The access token will not be cached. Check write access to the CS folder and ASR policies" $_.Exception + } } function Get-MsalAuthenticationToken @@ -496,7 +505,7 @@ function Get-MSALApp $msalApp = $appBuilder.Build() - if((Get-SettingValue "CacheMSALToken")) + if($global:SkipTokenCacheHelperEx -ne $true -and (Get-SettingValue "CacheMSALToken")) { [TokenCacheHelperEx]::EnableSerialization($msalApp.UserTokenCache, "%LOCALAPPDATA%\CloudAPIPowerShellManagement\msalcahce.bin3") } @@ -540,16 +549,16 @@ function Connect-MSALUser return } - if (-not ("TokenCacheHelperEx" -as [type])) + if ($global:SkipTokenCacheHelperEx -ne $true -and -not ("TokenCacheHelperEx" -as [type])) { Add-MSALPrereq } - if (-not ("TokenCacheHelperEx" -as [type])) - { - Write-Log "Failed to compile TokenCacheHelperEx class" - return - } + #if (-not ("TokenCacheHelperEx" -as [type])) + #{ + # Write-Log "Failed to compile TokenCacheHelperEx class" + # return + #} $curTicks = $global:MSALToken.ExpiresOn.LocalDateTime.Ticks @@ -977,7 +986,7 @@ function Get-MSALProfileEllipse Write-Status "" }) - AddGridObject $otherLogins $lnkButton + Add-GridObject $otherLogins $lnkButton } catch {} } @@ -1019,7 +1028,7 @@ function Get-MSALProfileEllipse Write-Status "" }) - AddGridObject $otherLogins $lnkButton + Add-GridObject $otherLogins $lnkButton $loginPanel.Tag = $this.Content @@ -1228,7 +1237,7 @@ function Get-MSALProfileEllipse $grdAccount.Children.Add($lnkButton) | Out-Null - AddGridObject $otherLogins $grdAccount + Add-GridObject $otherLogins $grdAccount } catch {} } @@ -1271,7 +1280,7 @@ function Get-MSALProfileEllipse Write-Status "" }) - AddGridObject $otherLogins $lnkButton + Add-GridObject $otherLogins $lnkButton if(($script:AccessableTenants | measure).Count -gt 1) { @@ -1281,7 +1290,7 @@ function Get-MSALProfileEllipse $lbObj = [Windows.Markup.XamlReader]::Parse("Tenants:") $lbObj.Margin = "0,5,0,0" - AddGridObject $otherLogins $lbObj + Add-GridObject $otherLogins $lbObj foreach($tenant in $script:AccessableTenants) { try @@ -1312,13 +1321,13 @@ function Get-MSALProfileEllipse } Write-Status "" }) - AddGridObject $otherLogins $lnkButton + Add-GridObject $otherLogins $lnkButton } else { $lbObj.Background = $window.TryFindResource("SelectedRowBackgroundColor") $lbObj.Margin = "0,5,0,0" - AddGridObject $otherLogins $lbObj + Add-GridObject $otherLogins $lbObj } } catch {} diff --git a/Extensions/MSGraph.psm1 b/Extensions/MSGraph.psm1 index 657029c..6b22b1b 100644 --- a/Extensions/MSGraph.psm1 +++ b/Extensions/MSGraph.psm1 @@ -10,7 +10,7 @@ This module manages Microsoft Grap fuctions like calling APIs, managing graph ob #> function Get-ModuleVersion { - '3.1.4' + '3.1.5' } $global:MSGraphGlobalApps = @( @@ -430,42 +430,48 @@ function Show-GraphObjects $graphObjects = @(Get-GraphObjects -property $global:curObjectType.ViewProperties -objectType $global:curObjectType) - if(($graphObjects | measure).Count -eq 0) { return } - $dgObjects.AutoGenerateColumns = $false $dgObjects.Columns.Clear() - $tmpObj = $graphObjects | Select -First 1 - $prop = $tmpObj.PSObject.Properties | Where Name -eq "IsSelected" - if($prop) - { - $column = Get-GridCheckboxColumn "IsSelected" - $dgObjects.Columns.Add($column) + if(($graphObjects | measure).Count -gt 0) + { + $tmpObj = $graphObjects | Select -First 1 - $column.Header.add_Click({ - foreach($item in $global:dgObjects.ItemsSource) - { - $item.IsSelected = $this.IsChecked - } - $global:dgObjects.Items.Refresh() - }) + $prop = $tmpObj.PSObject.Properties | Where Name -eq "IsSelected" + if($prop) + { + $column = Get-GridCheckboxColumn "IsSelected" + $dgObjects.Columns.Add($column) + + $column.Header.add_Click({ + foreach($item in $global:dgObjects.ItemsSource) + { + $item.IsSelected = $this.IsChecked + } + $global:dgObjects.Items.Refresh() + }) + } + + $tableColumns = @() + # Add other columns + foreach($prop in ($tmpObj.PSObject.Properties | Where {$_.Name -notin @("IsSelected","Object","ObjectType")})) + { + $binding = [System.Windows.Data.Binding]::new($prop.Name) + $column = [System.Windows.Controls.DataGridTextColumn]::new() + $column.Header = $prop.Name + $column.IsReadOnly = $true + $column.Binding = $binding + + $tableColumns += $prop.Name + $dgObjects.Columns.Add($column) + } + $ocList = [System.Collections.ObjectModel.ObservableCollection[object]]::new($graphObjects) + $dgObjects.ItemsSource = [System.Windows.Data.CollectionViewSource]::GetDefaultView($ocList) } - - $tableColumns = @() - # Add other columns - foreach($prop in ($tmpObj.PSObject.Properties | Where {$_.Name -notin @("IsSelected","Object","ObjectType")})) + else { - $binding = [System.Windows.Data.Binding]::new($prop.Name) - $column = [System.Windows.Controls.DataGridTextColumn]::new() - $column.Header = $prop.Name - $column.IsReadOnly = $true - $column.Binding = $binding - - $tableColumns += $prop.Name - $dgObjects.Columns.Add($column) + $dgObjects.ItemsSource = $null } - $ocList = [System.Collections.ObjectModel.ObservableCollection[object]]::new($graphObjects) - $dgObjects.ItemsSource = [System.Windows.Data.CollectionViewSource]::GetDefaultView($ocList) # Show/Hide buttons based on object type foreach($ctrl in $spSubMenu.Children) @@ -1236,7 +1242,7 @@ function Show-GraphBulkDeleteForm return } - if(([System.Windows.MessageBox]::Show("Are you sure you want to delete all objects of the selected type(s)?`n`n$selCount type(s) selected", "Delete Objects?", "YesNo", "Warning")) -ne "Yes") + if(([System.Windows.MessageBox]::Show("Are you sure you want to delete all objects of the selected type(s)?`n`n$selCount type(s) selected`n`nEnvironment: $($global:Organization.displayName)", "Delete Objects?", "YesNo", "Warning")) -ne "Yes") { return } @@ -1331,7 +1337,10 @@ function Import-GraphFile return } - Get-GraphMigrationObjectsFromFile + if($global:chkImportAssignments -and $global:chkImportAssignments.IsChecked -eq $true) + { + Get-GraphMigrationObjectsFromFile + } Get-GraphDependencyObjects $file.ObjectType @@ -2268,7 +2277,7 @@ function Remove-GraphObjects return } - if(([System.Windows.MessageBox]::Show("Are you sure you want to delete $($objectsToDelete.Count) $($global:curObjectType.Title) object(s)?", "Delete Objects?", "YesNo", "Warning")) -ne "Yes") + if(([System.Windows.MessageBox]::Show("Are you sure you want to delete $($objectsToDelete.Count) $($global:curObjectType.Title) object(s)?`n`nEnvironment: $($global:Organization.displayName)", "Delete Objects?", "YesNo", "Warning")) -ne "Yes") { return } @@ -2344,9 +2353,12 @@ function Copy-GraphObject { # Export profile Write-Status "Export $((Get-GraphObjectName $dgObjects.SelectedItem $global:curObjectType))" + + $exportObj = (Get-GraphObject $dgObjects.SelectedItem.Object $global:curObjectType -SkipAssignments).Object + if($global:curObjectType.PreCopyCommand) { - if((& $global:curObjectType.PreCopyCommand $dgObjects.SelectedItem.Object $global:curObjectType $ret)) + if((& $global:curObjectType.PreCopyCommand $exportObj $global:curObjectType $ret)) { Show-GraphObjects Write-Status "" @@ -2354,8 +2366,6 @@ function Copy-GraphObject } } - $exportObj = (Get-GraphObject $dgObjects.SelectedItem.Object $global:curObjectType -SkipAssignments).Object - # Convert to Json and back to clone the object $obj = ConvertTo-Json $exportObj -Depth 10 | ConvertFrom-Json if($obj) diff --git a/README.md b/README.md index d58393e..d504119 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Start the script by running **Start.cmd**, **Start-WithConsole.cmd** or **Start- ## Documentation -This script has an extension that can document profiles and policies in Intune. The output is using the same language string as the Intune portal. +This script has an extension that can document profiles and policies in Intune. The output is using the same language strings as the Intune portal. See [Documentation](Documentation.md) for more information @@ -99,6 +99,24 @@ Bulk copy can be used to clone objects based on a name pattern. This can be used **Note:** Assignments will NOT be copied. +## Intune Tools + +Additional Intune Tools is included in the script. + +* ADMX Import + * Import 3rd part ADMX settings like Chrome etc. by using a UI similar to GPMC + * Support for any language if there is an ADML file for it +* Reg Values + * Create registry settings in HKLM or HKCU. Supported value types: + * String + * Multi-String + * Expandable String + * DWORD + * List (Key/Value pair) + * This tool creates a custom ADMX file based on the specified registry keys. + +See [ADMX Import](ADMXImport.md) for more information about the ADMX tools + ## Change log See [Change Log](ReleaseNotes.md) for more information diff --git a/RegADMXCurrent.png b/RegADMXCurrent.png new file mode 100644 index 0000000..5a1c25c Binary files /dev/null and b/RegADMXCurrent.png differ diff --git a/RegADMXDefault.png b/RegADMXDefault.png new file mode 100644 index 0000000..0377b59 Binary files /dev/null and b/RegADMXDefault.png differ diff --git a/RegADMXFileContent.png b/RegADMXFileContent.png new file mode 100644 index 0000000..bb93660 Binary files /dev/null and b/RegADMXFileContent.png differ diff --git a/RegADMXProvider.png b/RegADMXProvider.png new file mode 100644 index 0000000..49f2180 Binary files /dev/null and b/RegADMXProvider.png differ diff --git a/RegPolicyHKCU.png b/RegPolicyHKCU.png new file mode 100644 index 0000000..656b4be Binary files /dev/null and b/RegPolicyHKCU.png differ diff --git a/RegPolicyHKLM.png b/RegPolicyHKLM.png new file mode 100644 index 0000000..d0fcefb Binary files /dev/null and b/RegPolicyHKLM.png differ diff --git a/RegProfileADMXIngestion.png b/RegProfileADMXIngestion.png new file mode 100644 index 0000000..5054bb6 Binary files /dev/null and b/RegProfileADMXIngestion.png differ diff --git a/RegProfileOMAURISetting.png b/RegProfileOMAURISetting.png new file mode 100644 index 0000000..25ac112 Binary files /dev/null and b/RegProfileOMAURISetting.png differ diff --git a/RegValueIntuneProfile.png b/RegValueIntuneProfile.png new file mode 100644 index 0000000..d36fe73 Binary files /dev/null and b/RegValueIntuneProfile.png differ diff --git a/RegValuesHKCU.png b/RegValuesHKCU.png new file mode 100644 index 0000000..3d854e5 Binary files /dev/null and b/RegValuesHKCU.png differ diff --git a/RegValuesHKLM.png b/RegValuesHKLM.png new file mode 100644 index 0000000..4f35e58 Binary files /dev/null and b/RegValuesHKLM.png differ diff --git a/RegValuesHKLMList.png b/RegValuesHKLMList.png new file mode 100644 index 0000000..81a716d Binary files /dev/null and b/RegValuesHKLMList.png differ diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 7fb74d9..3f29b46 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,69 @@ # Release Notes +## 3.2.0 - 2021-08-15 + +**New features** + +- Intune Tools (New View) + + - **ADMX Import** - Configure settings for 3rd party ADMX files with a UI similar to GPMC and create a Custom Profile based on the configured settings + + - **Reg Values** - Add registry values to HKLM or HKCU. This will create and ADMX based on the configured settings and create a Custom Profile in Intune + + See [ADMX Import](ADMXImport.md) for more information on how this works + + **Note:** There is only Import functionality in this version. It does not support updating an existing Custom Profile ADMX policies. + + - **Important!** Consider this tool to be in preview at this moment. It has only been tested on Cloud only joined devices. It looks like there are different functionality in the Policy CSP between hybrid and cloud only joined devices. + It would be great if anyone testing this on hybrid (or cloud only joined) devices could create an issue and report back the findings, even if it works as intended. + + There are indications that Microsoft is implementing this into the portal UI. The [groupPolicyUploadedDefinitionFile](https://docs.microsoft.com/en-us/graph/api/resources/intune-grouppolicy-grouppolicyuploadeddefinitionfile?view=graph-rest-beta) API suggests that the portal will support this in the future. It would be good if this could be integrated with the Settings Catalog. + +- Documentation: + + - Create cover page and table of contents when no template is selected + - Select CSV delimiter when documenting to a CSV file + +- Compare: + + - Select CSV delimiter for bulk compare + +**Fixes** + +* Authentication + + * The script will start even if it failed to add type TokenCacheHelperEx. + + This is based on [Issue 21](https://github.com/Micke-K/IntuneManagement/issues/21) + + **Note:** The token will not support caching if this fails. This could be caused by not having write access to the \CS folder or by restrictive ASR policies + +* Export/Import + + * Added support for exporting OMA-URI values that are stored encrypted. + + **Note:** OMA-URI strings and XML Files are stored encrypted. These values will be decrypted and stored in clear text. Be careful if sensitive data is stored e.g. passwords. + + * Fix for updating existing Autopilot profiles during import. A new property was added that broke the functionality. + This is based on the feature request in [Issue 17](https://github.com/Micke-K/IntuneManagement/issues/17) + +* Documentation + + * New handling of Not Configured properties. Skipping unconfigured properties will now skip all these properties during documentation + * Minor fixes to avoid duplicate documentation of properties + +* Compare + + * Fixed bugs when comparing Intent objects (Endpoint Security) policies in Documentation mode. + +* Copy + + * Copy Custom Profiles with encrypted values + +**Additional Changes:** + +* Documentation files has be re-generated to support new\updated properties on Property based objects. + ## 3.1.8 - 2021-07-18 **New features** diff --git a/Xaml/BulkCompare.xaml b/Xaml/BulkCompare.xaml index 3023400..e1b4e2b 100644 --- a/Xaml/BulkCompare.xaml +++ b/Xaml/BulkCompare.xaml @@ -34,6 +34,7 @@ + @@ -57,7 +58,13 @@ - + + + + + @@ -67,7 +74,7 @@ - + diff --git a/Xaml/DocumentationCSVOptions.xaml b/Xaml/DocumentationCSVOptions.xaml index 73f72da..669d1e1 100644 --- a/Xaml/DocumentationCSVOptions.xaml +++ b/Xaml/DocumentationCSVOptions.xaml @@ -45,17 +45,23 @@ - + + + + + - + - + - + \ No newline at end of file diff --git a/Xaml/DocumentationWordOptions.xaml b/Xaml/DocumentationWordOptions.xaml index 3c955e5..27e0684 100644 --- a/Xaml/DocumentationWordOptions.xaml +++ b/Xaml/DocumentationWordOptions.xaml @@ -120,11 +120,34 @@ - + + + + + + + + + + + + + + + + + - - + \ No newline at end of file diff --git a/Xaml/EndpointManagerTools.xaml b/Xaml/EndpointManagerTools.xaml new file mode 100644 index 0000000..50f68d9 --- /dev/null +++ b/Xaml/EndpointManagerTools.xaml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/Xaml/EndpointManagerToolsADMX.xaml b/Xaml/EndpointManagerToolsADMX.xaml new file mode 100644 index 0000000..287627a --- /dev/null +++ b/Xaml/EndpointManagerToolsADMX.xaml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +