Forum Discussion
HotCakeX
Oct 20, 2020MVP
Found a bug in Edge 87 policy
So whenever I enable this policy This option in Edge which is related to secure DNS lookups, becomes unavailable and disabled I see no relation between the 2 options. in...
- Oct 21, 2020The nomenclature used in the code is a bit misleading; by "machine level policies" they mean policies set by the platform policy provider (on Windows, that's Group Policy). Basically, if you see anything listed in about:policy (even a dummy policy name that doesn't really exist) the device is considered "Managed" and you'll get the "Managed Device" banners and end-user configuration of Secure DNS will be blocked in about:settings.
HotCakeX
Oct 21, 2020MVP
Eric_Lawrence
Thank you, that makes sense in enterprise environment,
but I only downloaded the latest policy files and installed them on my personal non-managed Windows 10 20H2
Eric_Lawrence
Microsoft
Oct 21, 2020HotCakeX The "Your browser is managed by your organization" banner in your Settings screenshot indicates that your system is "Managed".
I misread the Chromium code-- the check falls through, so if your machine has any policies set (see about:policy), it's deemed "Managed":
if (base::IsMachineExternallyManaged()) // <-- this is the domain join check
return true;
#endif
#if !defined(OS_ANDROID) && !defined(OS_CHROMEOS)
if (g_browser_process->browser_policy_connector()
->HasMachineLevelPolicies()) // <-- this is the policy check
->HasMachineLevelPolicies()) // <-- this is the policy check
return true;
#endif
- HotCakeXOct 21, 2020MVPBy "machineLevelPolicies" you mean the policies that are under "Computer Configuration" right? then no I have nothing set under that, just 1 policy under "User Configuration"
- Eric_LawrenceOct 21, 2020
Microsoft
The nomenclature used in the code is a bit misleading; by "machine level policies" they mean policies set by the platform policy provider (on Windows, that's Group Policy). Basically, if you see anything listed in about:policy (even a dummy policy name that doesn't really exist) the device is considered "Managed" and you'll get the "Managed Device" banners and end-user configuration of Secure DNS will be blocked in about:settings.- HotCakeXOct 21, 2020MVPThat clears up the confusion, thank you very much
- HotCakeXOct 21, 2020MVP
Hi,
okay so I just tried this, instead of using computer configuration, i used user configuration group policies,
but I'm still getting the managed device banner and basically the same result