Jump to content

Recommended Posts

Posted

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?

Posted

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>

Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...