arrow    Home arrow Knowledge Base arrow General arrow Internet Explorer Proxy settings
Site Areas
Home
News
Knowledge Base
Web Links
Contact Us
Files
Terms of Use
Profile





Lost Password?
No account yet? Register
Internet Explorer Proxy settings
Written by Terry Watts   
Wednesday, 14 July 2004

Here is a bit of VB Script that will change the proxy settings of a machine if you are unable to access the Internet Explorer control panel or the Windows Registry.

USE AT YOUR OWN RISK

Copy and paste the script below into a new notepad document.  Alter "proxy.swgfl.org.uk" to the name of the proxy that you want to use.  In notepad save the script by using the Save As option, change the "Save as type" to all files, enter the "setproxy.vbs" as the file name and click save.

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer", "proxy.swgfl.org.uk:8080"
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable", "1", "REG_DWORD"
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyOverride", "<local>"

 
go to top Go To Top go to top
This article has been printed from www.schooltechnician.co.uk and is protected under copyright.
See http://www.schooltechnician.co.uk/terms_of_use.html for further details.