Internet Explorer Proxy settings

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…

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 "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsProxyServer", "proxy.swgfl.org.uk:8080"
WshShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsProxyEnable", "1", "REG_DWORD"
WshShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsProxyOverride", "<local>"

Similar Posts

  • Internet Explorer Max Connections

    If you are using a broadband connection it can be quite frustrating having to wait for Internet Explorer to finish rendering a web page.  Internet Explorer has a built in limit to the number of items that can be downloaded at any one time.  This limitation has been defined as part of the HTTP Specifications. …

  • Robocopy GUI

    If you like using the Microsoft Robocopy tool from the Server Resource kit to copy files across networks and disks, then you might be interested to know that there is a user friendly GUI.

  • Find and deal with Duplicate Files

    With in any one system, there may be hundreds of files that are essentially taking up space.  These files range from JPG images, MP3 down to program files and the occasional folder backup.   However finding these files can be quite time consuming.

  • Need to copy files across a network? Use RoboCopy

    If you are migrating a file server or just have lots of files to copy from one networked machine to another, then instead of using the Windows Explorer method of copying the files, why not use RoboCopy?

  • Take control of Domain Passwords with Password Control

    There are many ways to change passwords on a Windows Active Directory Domain.  Users can change their own passwords on the workstation.  However for Network administrators there are not any built-in tools for administrating other user network passwords, unless you Remote Desktop to the Domain Controller or have installed the local support tools for Active…