gp: Modify Chromium CSE to use new files applier
authorDavid Mulder <dmulder@samba.org>
Tue, 6 Dec 2022 18:12:34 +0000 (11:12 -0700)
committerJeremy Allison <jra@samba.org>
Wed, 21 Dec 2022 02:04:37 +0000 (02:04 +0000)
Signed-off-by: David Mulder <dmulder@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
python/samba/gp/gp_chromium_ext.py
python/samba/tests/gpo.py

index ae4bc8a7a80775300f466f534c2f78ce66f8a053..c575ce0efacb7dcc7322917943245860f956e805 100644 (file)
 
 import os
 import json
-from samba.gp.gpclass import gp_pol_ext
+from samba.gp.gpclass import gp_pol_ext, gp_file_applier
 from samba.dcerpc import misc
 from samba.common import get_string
 from samba.gp.util.logging import log
+from tempfile import NamedTemporaryFile
 
 def parse_entry_data(name, e):
     dict_entries = ['VirtualKeyboardFeatures',
@@ -365,7 +366,9 @@ def assign_entry(policies, e):
         name = e.valuename
         policies[name] = parse_entry_data(name, e)
 
-def convert_pol_to_json(managed, recommended, section, entries):
+def convert_pol_to_json(section, entries):
+    managed = {}
+    recommended = {}
     recommended_section = '\\'.join([section, 'Recommended'])
     for e in entries:
         if '**delvals.' in e.valuename:
@@ -376,98 +379,77 @@ def convert_pol_to_json(managed, recommended, section, entries):
             assign_entry(managed, e)
     return managed, recommended
 
-class gp_chromium_ext(gp_pol_ext):
+class gp_chromium_ext(gp_pol_ext, gp_file_applier):
     __managed_policies_path = '/etc/chromium/policies/managed'
     __recommended_policies_path = '/etc/chromium/policies/recommended'
 
     def __str__(self):
         return 'Google/Chromium'
 
-    def set_managed_machine_policy(self, managed):
-        try:
-            managed_policies = os.path.join(self.__managed_policies_path,
-                                            'policies.json')
-            os.makedirs(self.__managed_policies_path, exist_ok=True)
-            with open(managed_policies, 'w') as f:
-                json.dump(managed, f)
-                log.debug('Wrote Chromium preferences', managed_policies)
-        except PermissionError:
-            log.debug('Failed to write Chromium preferences',
-                      managed_policies)
-
-
-    def set_recommended_machine_policy(self, recommended):
-        try:
-            recommended_policies = os.path.join(self.__recommended_policies_path,
-                                                'policies.json')
-            os.makedirs(self.__recommended_policies_path, exist_ok=True)
-            with open(recommended_policies, 'w') as f:
-                json.dump(recommended, f)
-                log.debug('Wrote Chromium preferences', recommended_policies)
-        except PermissionError:
-            log.debug('Failed to write Chromium preferences',
-                      recommended_policies)
-
-    def get_managed_machine_policy(self):
-        managed_policies = os.path.join(self.__managed_policies_path,
-                                        'policies.json')
-        if os.path.exists(managed_policies):
-            with open(managed_policies, 'r') as r:
-                managed = json.load(r)
-                log.debug('Read Chromium preferences', managed_policies)
-        else:
-            managed = {}
-        return managed
-
-    def get_recommended_machine_policy(self):
-        recommended_policies = os.path.join(self.__recommended_policies_path,
-                                            'policies.json')
-        if os.path.exists(recommended_policies):
-            with open(recommended_policies, 'r') as r:
-                recommended = json.load(r)
-                log.debug('Read Chromium preferences', recommended_policies)
-        else:
-            recommended = {}
-        return recommended
-
     def process_group_policy(self, deleted_gpo_list, changed_gpo_list,
                              policy_dir=None):
         if policy_dir is not None:
             self.__recommended_policies_path = os.path.join(policy_dir,
                                                             'recommended')
             self.__managed_policies_path = os.path.join(policy_dir, 'managed')
+        # Create the policy directories if necessary
+        if not os.path.exists(self.__recommended_policies_path):
+            os.makedirs(self.__recommended_policies_path, mode=0o755,
+                        exist_ok=True)
+        if not os.path.exists(self.__managed_policies_path):
+            os.makedirs(self.__managed_policies_path, mode=0o755,
+                        exist_ok=True)
         for guid, settings in deleted_gpo_list:
-            self.gp_db.set_guid(guid)
             if str(self) in settings:
                 for attribute, policies in settings[str(self)].items():
-                    if attribute == 'managed':
-                        self.set_managed_machine_policy(json.loads(policies))
-                    elif attribute == 'recommended':
-                        self.set_recommended_machine_policy(json.loads(policies))
-                    self.gp_db.delete(str(self), attribute)
-            self.gp_db.commit()
+                    try:
+                        json.loads(policies)
+                    except json.decoder.JSONDecodeError:
+                        self.unapply(guid, attribute, policies)
+                    else:
+                        # Policies were previously stored all in one file, but
+                        # the Chromium documentation says this is not
+                        # necessary. Unapply the old policy file if json was
+                        # stored in the cache (now we store a hash and file
+                        # names instead).
+                        if attribute == 'recommended':
+                            fname = os.path.join(self.__recommended_policies_path,
+                                                 'policies.json')
+                        elif attribute == 'managed':
+                            fname = os.path.join(self.__managed_policies_path,
+                                                 'policies.json')
+                        self.unapply(guid, attribute, fname)
 
         for gpo in changed_gpo_list:
             if gpo.file_sys_path:
                 section = 'Software\\Policies\\Google\\Chrome'
-                self.gp_db.set_guid(gpo.name)
                 pol_file = 'MACHINE/Registry.pol'
                 path = os.path.join(gpo.file_sys_path, pol_file)
                 pol_conf = self.parse(path)
                 if not pol_conf:
                     continue
 
-                managed = self.get_managed_machine_policy()
-                recommended = self.get_recommended_machine_policy()
-                self.gp_db.store(str(self), 'managed', json.dumps(managed))
-                self.gp_db.store(str(self), 'recommended',
-                                 json.dumps(recommended))
-                managed, recommended = convert_pol_to_json(managed,
-                                               recommended, section,
-                                               pol_conf.entries)
-                self.set_managed_machine_policy(managed)
-                self.set_recommended_machine_policy(recommended)
-                self.gp_db.commit()
+                managed, recommended = convert_pol_to_json(section,
+                                                           pol_conf.entries)
+                def applier_func(policies, location):
+                    try:
+                        with NamedTemporaryFile(mode='w+', prefix='gp_',
+                                                delete=False,
+                                                dir=location,
+                                                suffix='.json') as f:
+                            json.dump(policies, f)
+                            os.chmod(f.name, 0o644)
+                            log.debug('Wrote Chromium preferences', policies)
+                            return [f.name]
+                    except PermissionError:
+                        log.debug('Failed to write Chromium preferences',
+                                  policies)
+                value_hash = self.generate_value_hash(json.dumps(managed))
+                self.apply(gpo.name, 'managed', value_hash, applier_func,
+                           managed, self.__managed_policies_path)
+                value_hash = self.generate_value_hash(json.dumps(recommended))
+                self.apply(gpo.name, 'recommended', value_hash, applier_func,
+                           recommended, self.__recommended_policies_path)
 
     def rsop(self, gpo):
         output = {}
index f6a8f4091309aa862fdb29c68d3d0677e5575579..d0ee55182129db1933e39964251d39b0c6a27da4 100644 (file)
@@ -2095,2097 +2095,7 @@ firefox_json_expected = \
 chromium_reg_pol = \
 b"""
 <?xml version="1.0" encoding="utf-8"?>
-<PolFile num_entries="836" signature="PReg" version="1">
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AbusiveExperienceInterventionEnforce</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AccessibilityImageLabelsEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AdditionalDnsQueryTypesEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AdsSettingForIntrusiveAdsSites</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AdvancedProtectionAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowCrossOriginAuthPrompt</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowDeletingBrowserHistory</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowDinosaurEasterEgg</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowFileSelectionDialogs</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowSyncXHRInPageDismissal</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AllowedDomainsForApps</ValueName>
-        <Value>managedchrome.com,example.com</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AlternateErrorPagesEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AlternativeBrowserPath</ValueName>
-        <Value>${ie}</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AlwaysOpenPdfExternally</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AmbientAuthenticationInPrivateModesEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AppCacheForceEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ApplicationLocaleValue</ValueName>
-        <Value>en</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AudioCaptureAllowed</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AudioProcessHighPriorityEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AudioSandboxEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AuthNegotiateDelegateAllowlist</ValueName>
-        <Value>foobar.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AuthSchemes</ValueName>
-        <Value>basic,digest,ntlm,negotiate</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AuthServerAllowlist</ValueName>
-        <Value>*.example.com,example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AutoLaunchProtocolsFromOrigins</ValueName>
-        <Value>[{&quot;allowed_origins&quot;: [&quot;example.com&quot;, &quot;http://www.example.com:8080&quot;], &quot;protocol&quot;: &quot;spotify&quot;}, {&quot;allowed_origins&quot;: [&quot;https://example.com&quot;, &quot;https://.mail.example.com&quot;], &quot;protocol&quot;: &quot;teams&quot;}, {&quot;allowed_origins&quot;: [&quot;*&quot;], &quot;protocol&quot;: &quot;outlook&quot;}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AutofillAddressEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AutofillCreditCardEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>AutoplayAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BackgroundModeEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BasicAuthOverHttpEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BlockExternalExtensions</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BlockThirdPartyCookies</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BookmarkBarEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserAddPersonEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserGuestModeEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserGuestModeEnforced</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserLabsEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserNetworkTimeQueriesEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSignin</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherChromePath</ValueName>
-        <Value>${chrome}</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherDelay</ValueName>
-        <Value>10000</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherExternalGreylistUrl</ValueName>
-        <Value>http://example.com/greylist.xml</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherExternalSitelistUrl</ValueName>
-        <Value>http://example.com/sitelist.xml</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherKeepLastChromeTab</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserSwitcherUseIeSitelist</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowserThemeColor</ValueName>
-        <Value>#FFFFFF</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BrowsingDataLifetime</ValueName>
-        <Value>[{&quot;data_types&quot;: [&quot;browsing_history&quot;], &quot;time_to_live_in_hours&quot;: 24}, {&quot;data_types&quot;: [&quot;password_signin&quot;, &quot;autofill&quot;], &quot;time_to_live_in_hours&quot;: 12}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>BuiltInDnsClientEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CECPQ2Enabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ChromeCleanupEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ChromeCleanupReportingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ChromeVariations</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ClickToCallEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudManagementEnrollmentMandatory</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudManagementEnrollmentToken</ValueName>
-        <Value>37185d02-e055-11e7-80c1-9a214cf093ae</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudPolicyOverridesPlatformPolicy</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudPrintProxyEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudPrintSubmitEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CloudUserPolicyMerge</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>CommandLineFlagSecurityWarningsEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ComponentUpdatesEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DNSInterceptionChecksEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultBrowserSettingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultCookiesSetting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultFileHandlingGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultFileSystemReadGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultFileSystemWriteGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultGeolocationSetting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultImagesSetting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultInsecureContentSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultJavaScriptSetting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultNotificationsSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultPopupsSetting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultPrinterSelection</ValueName>
-        <Value>{ &quot;kind&quot;: &quot;cloud&quot;, &quot;idPattern&quot;: &quot;.*public&quot;, &quot;namePattern&quot;: &quot;.*Color&quot; }</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderContextMenuAccessAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderIconURL</ValueName>
-        <Value>https://search.my.company/favicon.ico</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderImageURL</ValueName>
-        <Value>https://search.my.company/searchbyimage/upload</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderImageURLPostParams</ValueName>
-        <Value>content={imageThumbnail},url={imageURL},sbisrc={SearchSource}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderKeyword</ValueName>
-        <Value>mis</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderName</ValueName>
-        <Value>My Intranet Search</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderNewTabURL</ValueName>
-        <Value>https://search.my.company/newtab</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderSearchURL</ValueName>
-        <Value>https://search.my.company/search?q={searchTerms}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderSearchURLPostParams</ValueName>
-        <Value>q={searchTerms},ie=utf-8,oe=utf-8</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderSuggestURL</ValueName>
-        <Value>https://search.my.company/suggest?q={searchTerms}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSearchProviderSuggestURLPostParams</ValueName>
-        <Value>q={searchTerms},ie=utf-8,oe=utf-8</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSensorsSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultSerialGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultWebBluetoothGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DefaultWebUsbGuardSetting</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DeveloperToolsAvailability</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>Disable3DAPIs</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DisableAuthNegotiateCnameLookup</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DisablePrintPreview</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DisableSafeBrowsingProceedAnyway</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DisableScreenshots</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DiskCacheDir</ValueName>
-        <Value>${user_home}/Chrome_cache</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DiskCacheSize</ValueName>
-        <Value>104857600</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DnsOverHttpsMode</ValueName>
-        <Value>off</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DnsOverHttpsTemplates</ValueName>
-        <Value>https://dns.example.net/dns-query{?dns}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DownloadDirectory</ValueName>
-        <Value>/home/${user_name}/Downloads</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>DownloadRestrictions</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EditBookmarksEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EnableAuthNegotiatePort</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EnableDeprecatedPrivetPrinting</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EnableMediaRouter</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EnableOnlineRevocationChecks</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>EnterpriseHardwarePlatformAPIEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ExtensionSettings</ValueName>
-        <Value>{&quot;*&quot;: {&quot;allowed_types&quot;: [&quot;hosted_app&quot;], &quot;blocked_install_message&quot;: &quot;Custom error message.&quot;, &quot;blocked_permissions&quot;: [&quot;downloads&quot;, &quot;bookmarks&quot;], &quot;install_sources&quot;: [&quot;https://company-intranet/chromeapps&quot;], &quot;installation_mode&quot;: &quot;blocked&quot;, &quot;runtime_allowed_hosts&quot;: [&quot;*://good.example.com&quot;], &quot;runtime_blocked_hosts&quot;: [&quot;*://*.example.com&quot;]}, &quot;abcdefghijklmnopabcdefghijklmnop&quot;: {&quot;blocked_permissions&quot;: [&quot;history&quot;], &quot;installation_mode&quot;: &quot;allowed&quot;, &quot;minimum_version_required&quot;: &quot;1.0.1&quot;, &quot;toolbar_pin&quot;: &quot;force_pinned&quot;}, &quot;bcdefghijklmnopabcdefghijklmnopa&quot;: {&quot;allowed_permissions&quot;: [&quot;downloads&quot;], &quot;installation_mode&quot;: &quot;force_installed&quot;, &quot;runtime_allowed_hosts&quot;: [&quot;*://good.example.com&quot;], &quot;runtime_blocked_hosts&quot;: [&quot;*://*.example.com&quot;], &quot;update_url&quot;: &quot;https://example.com/update_url&quot;}, &quot;cdefghijklmnopabcdefghijklmnopab&quot;: {&quot;blocked_install_message&quot;: &quot;Custom error message.&quot;, &quot;installation_mode&quot;: &quot;blocked&quot;}, &quot;defghijklmnopabcdefghijklmnopabc,efghijklmnopabcdefghijklmnopabcd&quot;: {&quot;blocked_install_message&quot;: &quot;Custom error message.&quot;, &quot;installation_mode&quot;: &quot;blocked&quot;}, &quot;fghijklmnopabcdefghijklmnopabcde&quot;: {&quot;blocked_install_message&quot;: &quot;Custom removal message.&quot;, &quot;installation_mode&quot;: &quot;removed&quot;}, &quot;ghijklmnopabcdefghijklmnopabcdef&quot;: {&quot;installation_mode&quot;: &quot;force_installed&quot;, &quot;override_update_url&quot;: true, &quot;update_url&quot;: &quot;https://example.com/update_url&quot;}, &quot;update_url:https://www.example.com/update.xml&quot;: {&quot;allowed_permissions&quot;: [&quot;downloads&quot;], &quot;blocked_permissions&quot;: [&quot;wallpaper&quot;], &quot;installation_mode&quot;: &quot;allowed&quot;}}</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ExternalProtocolDialogShowAlwaysOpenCheckbox</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>FetchKeepaliveDurationSecondsOnShutdown</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ForceEphemeralProfiles</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ForceGoogleSafeSearch</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ForceYouTubeRestrict</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>FullscreenAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>GloballyScopeHTTPAuthCacheEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>HardwareAccelerationModeEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>HeadlessMode</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>HideWebStoreIcon</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>HomepageIsNewTabPage</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>HomepageLocation</ValueName>
-        <Value>https://www.chromium.org</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportAutofillFormData</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportBookmarks</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportHistory</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportHomepage</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportSavedPasswords</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ImportSearchEngine</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>IncognitoModeAvailability</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>InsecureFormsWarningsEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>InsecurePrivateNetworkRequestsAllowed</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>IntensiveWakeUpThrottlingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>IntranetRedirectBehavior</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>IsolateOrigins</ValueName>
-        <Value>https://example.com/,https://othersite.org/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ManagedBookmarks</ValueName>
-        <Value>[{&quot;toplevel_name&quot;: &quot;My managed bookmarks folder&quot;}, {&quot;name&quot;: &quot;Google&quot;, &quot;url&quot;: &quot;google.com&quot;}, {&quot;name&quot;: &quot;Youtube&quot;, &quot;url&quot;: &quot;youtube.com&quot;}, {&quot;children&quot;: [{&quot;name&quot;: &quot;Chromium&quot;, &quot;url&quot;: &quot;chromium.org&quot;}, {&quot;name&quot;: &quot;Chromium Developers&quot;, &quot;url&quot;: &quot;dev.chromium.org&quot;}], &quot;name&quot;: &quot;Chrome links&quot;}]</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ManagedConfigurationPerOrigin</ValueName>
-        <Value>[{&quot;managed_configuration_hash&quot;: &quot;asd891jedasd12ue9h&quot;, &quot;managed_configuration_url&quot;: &quot;https://gstatic.google.com/configuration.json&quot;, &quot;origin&quot;: &quot;https://www.google.com&quot;}, {&quot;managed_configuration_hash&quot;: &quot;djio12easd89u12aws&quot;, &quot;managed_configuration_url&quot;: &quot;https://gstatic.google.com/configuration2.json&quot;, &quot;origin&quot;: &quot;https://www.example.com&quot;}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>MaxConnectionsPerProxy</ValueName>
-        <Value>32</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>MaxInvalidationFetchDelay</ValueName>
-        <Value>10000</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>MediaRecommendationsEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>MediaRouterCastAllowAllIPs</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>MetricsReportingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>NTPCardsVisible</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>NTPCustomBackgroundEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>NativeMessagingUserLevelHosts</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>NetworkPredictionOptions</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>NewTabPageLocation</ValueName>
-        <Value>https://www.chromium.org</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PasswordLeakDetectionEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PasswordManagerEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PasswordProtectionChangePasswordURL</ValueName>
-        <Value>https://mydomain.com/change_password.html</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PasswordProtectionWarningTrigger</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PaymentMethodQueryEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PolicyAtomicGroupsEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PolicyRefreshRate</ValueName>
-        <Value>3600000</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintHeaderFooter</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintPreviewUseSystemDefaultPrinter</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintRasterizationMode</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintingAllowedBackgroundGraphicsModes</ValueName>
-        <Value>enabled</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintingBackgroundGraphicsDefault</ValueName>
-        <Value>enabled</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PrintingPaperSizeDefault</ValueName>
-        <Value>{&quot;custom_size&quot;: {&quot;height&quot;: 297000, &quot;width&quot;: 210000}, &quot;name&quot;: &quot;custom&quot;}</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ProfilePickerOnStartupAvailability</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PromotionalTabsEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>PromptForDownloadLocation</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ProxySettings</ValueName>
-        <Value>{&quot;ProxyBypassList&quot;: &quot;https://www.example1.com,https://www.example2.com,https://internalsite/&quot;, &quot;ProxyMode&quot;: &quot;direct&quot;, &quot;ProxyPacUrl&quot;: &quot;https://internal.site/example.pac&quot;, &quot;ProxyServer&quot;: &quot;123.123.123.123:8080&quot;, &quot;ProxyServerMode&quot;: 2}</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>QuicAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RelaunchNotification</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RelaunchNotificationPeriod</ValueName>
-        <Value>604800000</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostAllowClientPairing</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostAllowFileTransfer</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostAllowRelayedConnection</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostAllowRemoteAccessConnections</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostAllowUiAccessForRemoteAssistance</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostFirewallTraversal</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostMaximumSessionDurationMinutes</ValueName>
-        <Value>1200</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostRequireCurtain</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RemoteAccessHostUdpPortRange</ValueName>
-        <Value>12400-12409</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RendererCodeIntegrityEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RequireOnlineRevocationChecksForLocalAnchors</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RestoreOnStartup</ValueName>
-        <Value>4</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RestrictSigninToPattern</ValueName>
-        <Value>.*@example\\.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RoamingProfileLocation</ValueName>
-        <Value>${roaming_app_data}\\chrome-profile</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>RoamingProfileSupportEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SSLErrorOverrideAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SSLVersionMin</ValueName>
-        <Value>tls1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SafeBrowsingExtendedReportingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SafeBrowsingForTrustedSourcesEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SafeBrowsingProtectionLevel</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SafeSitesFilterBehavior</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SavingBrowserHistoryDisabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ScreenCaptureAllowed</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ScrollToTextFragmentEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SearchSuggestEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SharedArrayBufferUnrestrictedAccessAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SharedClipboardEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ShowAppsShortcutInBookmarkBar</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ShowCastIconInToolbar</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ShowFullUrlsInAddressBar</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ShowHomeButton</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SignedHTTPExchangeEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SigninInterceptionEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SitePerProcess</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SpellCheckServiceEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SpellcheckEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SuppressDifferentOriginSubframeDialogs</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SuppressUnsupportedOSWarning</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>SyncDisabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>TargetBlankImpliesNoOpener</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>TaskManagerEndProcessEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>ThirdPartyBlockingEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>TotalMemoryLimitMb</ValueName>
-        <Value>2048</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>TranslateEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>TripleDESEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>UrlKeyedAnonymizedDataCollectionEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>UserAgentClientHintsEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>UserDataDir</ValueName>
-        <Value>${users}/${user_name}/Chrome</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>UserDataSnapshotRetentionLimit</ValueName>
-        <Value>3</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>UserFeedbackAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>VideoCaptureAllowed</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WPADQuickCheckEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebAppInstallForceList</ValueName>
-        <Value>[{&quot;create_desktop_shortcut&quot;: true, &quot;default_launch_container&quot;: &quot;window&quot;, &quot;url&quot;: &quot;https://www.google.com/maps&quot;}, {&quot;default_launch_container&quot;: &quot;tab&quot;, &quot;url&quot;: &quot;https://docs.google.com&quot;}, {&quot;default_launch_container&quot;: &quot;window&quot;, &quot;fallback_app_name&quot;: &quot;Editor&quot;, &quot;url&quot;: &quot;https://docs.google.com/editor&quot;}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebRtcAllowLegacyTLSProtocols</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebRtcEventLogCollectionAllowed</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebRtcIPHandling</ValueName>
-        <Value>default</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebRtcUdpPortRange</ValueName>
-        <Value>10000-11999</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WebUsbAllowDevicesForUrls</ValueName>
-        <Value>[{&quot;devices&quot;: [{&quot;product_id&quot;: 5678, &quot;vendor_id&quot;: 1234}], &quot;urls&quot;: [&quot;https://google.com&quot;]}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome</Key>
-        <ValueName>WindowOcclusionEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AlternativeBrowserParameters</Key>
-        <ValueName>1</ValueName>
-        <Value>-foreground</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AlternativeBrowserParameters</Key>
-        <ValueName>2</ValueName>
-        <Value>-new-window</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AlternativeBrowserParameters</Key>
-        <ValueName>3</ValueName>
-        <Value>${url}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AlternativeBrowserParameters</Key>
-        <ValueName>4</ValueName>
-        <Value>-profile</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AlternativeBrowserParameters</Key>
-        <ValueName>5</ValueName>
-        <Value>%HOME%\\browser_profile</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AudioCaptureAllowedUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AudioCaptureAllowedUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>https://[*.]example.edu/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenAllowedForURLs</Key>
-        <ValueName>1</ValueName>
-        <Value>example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenAllowedForURLs</Key>
-        <ValueName>2</ValueName>
-        <Value>https://ssl.server.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenAllowedForURLs</Key>
-        <ValueName>3</ValueName>
-        <Value>hosting.com/good_path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenAllowedForURLs</Key>
-        <ValueName>4</ValueName>
-        <Value>https://server:8080/path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenAllowedForURLs</Key>
-        <ValueName>5</ValueName>
-        <Value>.exact.hostname.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenFileTypes</Key>
-        <ValueName>1</ValueName>
-        <Value>exe</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoOpenFileTypes</Key>
-        <ValueName>2</ValueName>
-        <Value>txt</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoSelectCertificateForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>{&quot;pattern&quot;:&quot;https://www.example.com&quot;,&quot;filter&quot;:{&quot;ISSUER&quot;:{&quot;CN&quot;:&quot;certificate issuer name&quot;, &quot;L&quot;: &quot;certificate issuer location&quot;, &quot;O&quot;: &quot;certificate issuer org&quot;, &quot;OU&quot;: &quot;certificate issuer org unit&quot;}, &quot;SUBJECT&quot;:{&quot;CN&quot;:&quot;certificate subject name&quot;, &quot;L&quot;: &quot;certificate subject location&quot;, &quot;O&quot;: &quot;certificate subject org&quot;, &quot;OU&quot;: &quot;certificate subject org unit&quot;}}}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoplayAllowlist</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AutoplayAllowlist</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherChromeParameters</Key>
-        <ValueName>1</ValueName>
-        <Value>--force-dark-mode</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlGreylist</Key>
-        <ValueName>1</ValueName>
-        <Value>ie.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlGreylist</Key>
-        <ValueName>2</ValueName>
-        <Value>!open-in-chrome.ie.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlGreylist</Key>
-        <ValueName>3</ValueName>
-        <Value>foobar.com/ie-only/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlList</Key>
-        <ValueName>1</ValueName>
-        <Value>ie.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlList</Key>
-        <ValueName>2</ValueName>
-        <Value>!open-in-chrome.ie.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\BrowserSwitcherUrlList</Key>
-        <ValueName>3</ValueName>
-        <Value>foobar.com/ie-only/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForCas</Key>
-        <ValueName>1</ValueName>
-        <Value>sha256/AAAAAAAAAAAAAAAAAAAAAA==</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForCas</Key>
-        <ValueName>2</ValueName>
-        <Value>sha256//////////////////////w==</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForLegacyCas</Key>
-        <ValueName>1</ValueName>
-        <Value>sha256/AAAAAAAAAAAAAAAAAAAAAA==</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForLegacyCas</Key>
-        <ValueName>2</ValueName>
-        <Value>sha256//////////////////////w==</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>1</ValueName>
-        <Value>browsing_history</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>2</ValueName>
-        <Value>download_history</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>3</ValueName>
-        <Value>cookies_and_other_site_data</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>4</ValueName>
-        <Value>cached_images_and_files</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>5</ValueName>
-        <Value>password_signin</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>6</ValueName>
-        <Value>autofill</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>7</ValueName>
-        <Value>site_settings</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ClearBrowsingDataOnExitList</Key>
-        <ValueName>8</ValueName>
-        <Value>hosted_app_data</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesSessionOnlyForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\CookiesSessionOnlyForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderAlternateURLs</Key>
-        <ValueName>1</ValueName>
-        <Value>https://search.my.company/suggest#q={searchTerms}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderAlternateURLs</Key>
-        <ValueName>2</ValueName>
-        <Value>https://search.my.company/suggest/search#q={searchTerms}</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderEncodings</Key>
-        <ValueName>1</ValueName>
-        <Value>UTF-8</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderEncodings</Key>
-        <ValueName>2</ValueName>
-        <Value>UTF-16</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderEncodings</Key>
-        <ValueName>3</ValueName>
-        <Value>GB2312</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\DefaultSearchProviderEncodings</Key>
-        <ValueName>4</ValueName>
-        <Value>ISO-8859-1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\EnableExperimentalPolicies</Key>
-        <ValueName>1</ValueName>
-        <Value>ExtensionInstallAllowlist</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\EnableExperimentalPolicies</Key>
-        <ValueName>2</ValueName>
-        <Value>ExtensionInstallBlocklist</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExplicitlyAllowedNetworkPorts</Key>
-        <ValueName>1</ValueName>
-        <Value>10080</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionAllowedTypes</Key>
-        <ValueName>1</ValueName>
-        <Value>hosted_app</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallAllowlist</Key>
-        <ValueName>1</ValueName>
-        <Value>extension_id1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallAllowlist</Key>
-        <ValueName>2</ValueName>
-        <Value>extension_id2</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallBlocklist</Key>
-        <ValueName>1</ValueName>
-        <Value>extension_id1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallBlocklist</Key>
-        <ValueName>2</ValueName>
-        <Value>extension_id2</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist</Key>
-        <ValueName>1</ValueName>
-        <Value>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;https://clients2.google.com/service/update2/crx</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist</Key>
-        <ValueName>2</ValueName>
-        <Value>abcdefghijklmnopabcdefghijklmnop</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallSources</Key>
-        <ValueName>1</ValueName>
-        <Value>https://corp.mycompany.com/*</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileHandlingAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileHandlingAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileHandlingBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileHandlingBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemReadAskForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemReadAskForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemReadBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemReadBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemWriteAskForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemWriteAskForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemWriteBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\FileSystemWriteBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ForcedLanguages</Key>
-        <ValueName>1</ValueName>
-        <Value>en-US</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\HSTSPolicyBypassList</Key>
-        <ValueName>1</ValueName>
-        <Value>meet</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ImagesAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ImagesAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ImagesBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ImagesBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecureContentAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecureContentAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecureContentBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecureContentBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecurePrivateNetworkRequestsAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>http://www.example.com:8080</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\InsecurePrivateNetworkRequestsAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\JavaScriptAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\JavaScriptAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\JavaScriptBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\JavaScriptBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\LegacySameSiteCookieBehaviorEnabledForDomainList</Key>
-        <ValueName>1</ValueName>
-        <Value>www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\LegacySameSiteCookieBehaviorEnabledForDomainList</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\LookalikeWarningAllowlistDomains</Key>
-        <ValueName>1</ValueName>
-        <Value>foo.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\LookalikeWarningAllowlistDomains</Key>
-        <ValueName>2</ValueName>
-        <Value>example.org</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NativeMessagingAllowlist</Key>
-        <ValueName>1</ValueName>
-        <Value>com.native.messaging.host.name1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NativeMessagingAllowlist</Key>
-        <ValueName>2</ValueName>
-        <Value>com.native.messaging.host.name2</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NativeMessagingBlocklist</Key>
-        <ValueName>1</ValueName>
-        <Value>com.native.messaging.host.name1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NativeMessagingBlocklist</Key>
-        <ValueName>2</ValueName>
-        <Value>com.native.messaging.host.name2</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NotificationsAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NotificationsAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NotificationsBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\NotificationsBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\OverrideSecurityRestrictionsOnInsecureOrigin</Key>
-        <ValueName>1</ValueName>
-        <Value>http://testserver.example.com/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\OverrideSecurityRestrictionsOnInsecureOrigin</Key>
-        <ValueName>2</ValueName>
-        <Value>*.example.org</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PasswordProtectionLoginURLs</Key>
-        <ValueName>1</ValueName>
-        <Value>https://mydomain.com/login.html</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PasswordProtectionLoginURLs</Key>
-        <ValueName>2</ValueName>
-        <Value>https://login.mydomain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PolicyDictionaryMultipleSourceMergeList</Key>
-        <ValueName>1</ValueName>
-        <Value>ExtensionSettings</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PolicyListMultipleSourceMergeList</Key>
-        <ValueName>1</ValueName>
-        <Value>ExtensionInstallAllowlist</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PolicyListMultipleSourceMergeList</Key>
-        <ValueName>2</ValueName>
-        <Value>ExtensionInstallBlocklist</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PopupsAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PopupsAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PopupsBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PopupsBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PrinterTypeDenyList</Key>
-        <ValueName>1</ValueName>
-        <Value>cloud</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\PrinterTypeDenyList</Key>
-        <ValueName>2</ValueName>
-        <Value>privet</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RemoteAccessHostClientDomainList</Key>
-        <ValueName>1</ValueName>
-        <Value>my-awesome-domain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RemoteAccessHostClientDomainList</Key>
-        <ValueName>2</ValueName>
-        <Value>my-auxiliary-domain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RemoteAccessHostDomainList</Key>
-        <ValueName>1</ValueName>
-        <Value>my-awesome-domain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RemoteAccessHostDomainList</Key>
-        <ValueName>2</ValueName>
-        <Value>my-auxiliary-domain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RestoreOnStartupURLs</Key>
-        <ValueName>1</ValueName>
-        <Value>https://example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\RestoreOnStartupURLs</Key>
-        <ValueName>2</ValueName>
-        <Value>https://www.chromium.org</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SSLErrorOverrideAllowedForOrigins</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SSLErrorOverrideAllowedForOrigins</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SafeBrowsingAllowlistDomains</Key>
-        <ValueName>1</ValueName>
-        <Value>mydomain.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SafeBrowsingAllowlistDomains</Key>
-        <ValueName>2</ValueName>
-        <Value>myuniversity.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SecurityKeyPermitAttestation</Key>
-        <ValueName>1</ValueName>
-        <Value>https://example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SensorsAllowedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SensorsAllowedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SensorsBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SensorsBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SerialAskForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SerialAskForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SerialBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SerialBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SpellcheckLanguage</Key>
-        <ValueName>1</ValueName>
-        <Value>fr</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SpellcheckLanguage</Key>
-        <ValueName>2</ValueName>
-        <Value>es</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SpellcheckLanguageBlocklist</Key>
-        <ValueName>1</ValueName>
-        <Value>fr</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SpellcheckLanguageBlocklist</Key>
-        <ValueName>2</ValueName>
-        <Value>es</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\SyncTypesListDisabled</Key>
-        <ValueName>1</ValueName>
-        <Value>bookmarks</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLAllowlist</Key>
-        <ValueName>1</ValueName>
-        <Value>example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLAllowlist</Key>
-        <ValueName>2</ValueName>
-        <Value>https://ssl.server.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLAllowlist</Key>
-        <ValueName>3</ValueName>
-        <Value>hosting.com/good_path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLAllowlist</Key>
-        <ValueName>4</ValueName>
-        <Value>https://server:8080/path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLAllowlist</Key>
-        <ValueName>5</ValueName>
-        <Value>.exact.hostname.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>1</ValueName>
-        <Value>example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>2</ValueName>
-        <Value>https://ssl.server.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>3</ValueName>
-        <Value>hosting.com/bad_path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>4</ValueName>
-        <Value>https://server:8080/path</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>5</ValueName>
-        <Value>.exact.hostname.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>6</ValueName>
-        <Value>file://*</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>7</ValueName>
-        <Value>custom_scheme:*</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\URLBlocklist</Key>
-        <ValueName>8</ValueName>
-        <Value>*</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\VideoCaptureAllowedUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\VideoCaptureAllowedUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>https://[*.]example.edu/</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebRtcLocalIpsAllowedUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebRtcLocalIpsAllowedUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>*example.com*</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebUsbAskForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebUsbAskForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebUsbBlockedForUrls</Key>
-        <ValueName>1</ValueName>
-        <Value>https://www.example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\WebUsbBlockedForUrls</Key>
-        <ValueName>2</ValueName>
-        <Value>[*.]example.edu</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>AlternateErrorPagesEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ApplicationLocaleValue</ValueName>
-        <Value>en</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>AutofillAddressEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>AutofillCreditCardEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>BackgroundModeEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>BlockThirdPartyCookies</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>BookmarkBarEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>DefaultDownloadDirectory</ValueName>
-        <Value>/home/${user_name}/Downloads</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>DownloadDirectory</ValueName>
-        <Value>/home/${user_name}/Downloads</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>DownloadRestrictions</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>HomepageIsNewTabPage</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>HomepageLocation</ValueName>
-        <Value>https://www.chromium.org</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ImportAutofillFormData</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ImportBookmarks</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ImportHistory</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ImportSavedPasswords</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ImportSearchEngine</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>MetricsReportingEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>NetworkPredictionOptions</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>PasswordLeakDetectionEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>PasswordManagerEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>PrintHeaderFooter</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>PrintPreviewUseSystemDefaultPrinter</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>RegisteredProtocolHandlers</ValueName>
-        <Value>[{&quot;default&quot;: true, &quot;protocol&quot;: &quot;mailto&quot;, &quot;url&quot;: &quot;https://mail.google.com/mail/?extsrc=mailto&amp;url=%s&quot;}]</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>RestoreOnStartup</ValueName>
-        <Value>4</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>SafeBrowsingForTrustedSourcesEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>SafeBrowsingProtectionLevel</ValueName>
-        <Value>2</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>SearchSuggestEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ShowFullUrlsInAddressBar</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>ShowHomeButton</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>SpellCheckServiceEnabled</ValueName>
-        <Value>0</Value>
-    </Entry>
-    <Entry type="4" type_name="REG_DWORD">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended</Key>
-        <ValueName>TranslateEnabled</ValueName>
-        <Value>1</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended\RestoreOnStartupURLs</Key>
-        <ValueName>1</ValueName>
-        <Value>https://example.com</Value>
-    </Entry>
-    <Entry type="1" type_name="REG_SZ">
-        <Key>HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\Recommended\RestoreOnStartupURLs</Key>
-        <ValueName>2</ValueName>
-        <Value>https://www.chromium.org</Value>
-    </Entry>
+<PolFile num_entries="418" signature="PReg" version="1">
     <Entry type="4" type_name="REG_DWORD">
         <Key>Software\Policies\Google\Chrome</Key>
         <ValueName>AbusiveExperienceInterventionEnforce</ValueName>
@@ -9034,21 +6944,25 @@ class GPOTests(tests.TestCase):
 
         with TemporaryDirectory() as dname:
             ext.process_group_policy([], gpos, dname)
-            managed = os.path.join(dname, 'managed', 'policies.json')
-            self.assertTrue(os.path.exists(managed),
-                            'Chromium policies are missing')
-            with open(managed, 'r') as r:
+            managed = os.path.join(dname, 'managed')
+            managed_files = os.listdir(managed)
+            self.assertEquals(len(managed_files), 1,
+                              'Chromium policies are missing')
+            with open(os.path.join(managed, managed_files[0]), 'r') as r:
                 managed_data = json.load(r)
-            recommended = os.path.join(dname, 'recommended', 'policies.json')
-            self.assertTrue(os.path.exists(recommended),
-                            'Chromium policies are missing')
-            with open(recommended, 'r') as r:
+            recommended = os.path.join(dname, 'recommended')
+            recommended_files = os.listdir(recommended)
+            self.assertEquals(len(recommended_files), 1,
+                              'Chromium policies are missing')
+            with open(os.path.join(recommended, recommended_files[0]),
+                      'r') as r:
                 recommended_data = json.load(r)
             expected_managed_data = json.loads(chromium_json_expected_managed)
             expected_recommended_data = \
                 json.loads(chromium_json_expected_recommended)
-            self.assertEqual(expected_managed_data.keys(),
-                             managed_data.keys(),
+            self.maxDiff = None
+            self.assertEqual(sorted(expected_managed_data.keys()),
+                             sorted(managed_data.keys()),
                              'Chromium policies are missing')
             for name in expected_managed_data.keys():
                 self.assertEqual(expected_managed_data[name],
@@ -9069,10 +6983,12 @@ class GPOTests(tests.TestCase):
             gp_db = store.get_gplog(machine_creds.get_username())
             del_gpos = get_deleted_gpos_list(gp_db, [])
             ext.process_group_policy(del_gpos, [], dname)
+            managed = os.path.join(managed, managed_files[0])
             if os.path.exists(managed):
                 data = json.load(open(managed, 'r'))
                 self.assertEqual(len(data.keys()), 0,
                                  'The policy was not unapplied')
+            recommended = os.path.join(recommended, recommended_files[0])
             if os.path.exists(recommended):
                 data = json.load(open(recommended, 'r'))
                 self.assertEqual(len(data.keys()), 0,