I want to retrieve the proxy configuration of desktops. For this I have created one custom property. I write the following relevance
if (exists key “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings” of registry) then (value “ProxyServer” of key “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings” of registry as string) else (“Not Found”)
But this is not working for all desktops. It is showing only for few desktops, remaining it is showing Please help.
Depending on the type of users you have, you may be able to avoid the “Current User” situation altogether. For a substantial portion of my environment, I’m able to set a GPO on the computer object that makes the IE proxy settings per computer versus per user (Computer Configuration > Policies > Administrative Templates > Windows Components > Internet Explorer > Make proxy settings per-machine). When that is in place, it is very straight forward to update the settings at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings without the “current user” hassle.
Note: This assumes that any user that logs onto a given computer will use the same proxy parameters.