deranjer Posted November 11, 2011 Posted November 11, 2011 I have been unable to find a way using autoit to backup the proxy settings for IE to a text file (whether it is a configuration script or proxy server). Does anyone know of a way to do this?
sleepydvdr Posted November 11, 2011 Posted November 11, 2011 Using AutoIt's RegRead function, you could read these registry values and write them to a file: [HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settings] "ProxyServer"="<your proxy IP address>:8080" "ProxyEnable"=dword:00000001 "ProxyOverride"="<local>" #include <ByteMe.au3>
deranjer Posted November 11, 2011 Author Posted November 11, 2011 Awesome, thanks for that, it should work fine, I would just check these values in the registry: [HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settings] "AutoConfigURL"="<Your Autoconfig URL>" "ProxyServer"="<your proxy IP address>:8080" "ProxyEnable"=dword:00000001 "ProxyOverride"="<local>" Thanks again!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now