Correctly detect AutoConfigURL on managed Windows systems#85
Correctly detect AutoConfigURL on managed Windows systems#85pbourguignon-enertrag wants to merge 2 commits intocarsonyl:masterfrom
Conversation
On Windows systems managed by an MDM (e.g. InTune), the value of AutoConfigURL might be found under a different key in the registry, namely `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings`. This changeset ensures that the URL is found successfully in such situations.
|
Thanks for the PR. While looking into this, I found https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-ie-clientnetworkprotocolimplementation-hklmproxyenable, which suggests the selection of HKCU/HKLM depends on ProxySettingsPerUser. Is that true in your situation? |
|
You're very welcome! Indeed, under the path Then, under Anyway, the PR could rely on a lookup of |
|
On my own PC, |
On Windows systems managed by an MDM (e.g. InTune), the value of AutoConfigURL might be found under a different key in the registry, namely
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings. This changeset ensures that the URL is found successfully in such situations.