' This script originally written 18th Dec 2007, updated May 2016 ' By Richard Collins ' Its job is to to create an entry for http://controllersvr ' inside the 'trusted zone' for Internet Explorer ' plus allow HTTP traffic ' ' Originally created for MS IE 6, but works on all later MS IE version (as of 2016) ' Originally created for Windows XP Pro, but works on all Windows operating systems (as of 2016) '===================================================== 'ALWAYS examine VBS files before running them 'If you choose to use this, you do so at your own risk '===================================================== DIM WshShell SET WSHShell = WScript.CreateObject("WScript.Shell") On Error Resume Next ' THE NEXT LINE should be modified so that controllersvr = wshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\controllersvr\http", "2", "REG_DWORD" wshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\2\Flags", "67", "REG_DWORD" ' '