deranjer 0 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? Share this post Link to post Share on other sites
sleepydvdr 8 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> Share this post Link to post Share on other sites
deranjer 0 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! Share this post Link to post Share on other sites