Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Batch file to enable / disable Proxy Settings in IE6.0

Status
Not open for further replies.

joem28a

Technical User
Oct 15, 2002
26
AU
Hi folks,

I am looking for a batch file that can disable / enable Proxy Settings in IE 6.0 via registry. At the mement there are quite a few mouse clicks to do this manually. Appreciate your assistance. Many thanks.

Regards,
Joe28a
 
This is straightforward enough. Get a .reg file that will load the proxy settings you want, and then in a batch file, use:

Code:
regedit yourRegFilename.reg

to load it.

If you do not want to be prompted, you can use the "/s" switch to put regedit into "silent" mode:

Code:
regedit /s yourRegFilename.reg

Hope this helps,
Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top