View Full Version : Script for Change the Proxy Setting


New User
05-15-2006, 12:49 PM
Hello:

Is it possible to use script or single executable file to modify the
user's IE proxy setting?
I would like to use it on logon script.

Thanks a lot!

Torpedro
05-15-2006, 02:09 PM
Proxy can be changed in the registry:
HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings
The relevant keys are:
ProxyServer
ProxyEnable

You either set it with Regedit /s Proxy1.reg
or the command reg add. See reg add /? for help

New User
05-16-2006, 12:48 AM
Torpedro wrote:
> Proxy can be changed in the registry:
> HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings
> The relevant keys are:
> ProxyServer
> ProxyEnable
>
> You either set it with Regedit /s Proxy1.reg
> or the command reg add. See reg add /? for help
>
>
Thanks for your information. The user is just normal user, does they can
update the registry by running regedit /s?

How about execute from VB Script?

Thanks!

Torpedro
05-16-2006, 09:08 AM
If no special restrictions are applied users can edit REgistry keys
they can normally write to. IE is just a program running under the
useres account, same is regedit.

VBScript is often disabled (at least at my company), thats why i prefer
regedit or reg.exe

I cannot help you with vbscript, but i think it's also trivial.