Hi All:
If I run a vbscript to do a regwrite that will add a site to the "local
Intranet" sites which is under: tools\Internet Options\Security\Local
Intranet\Sites\Advanced. There you add the entry under "Add this website to
the zone". This is the code I run
that adds the entry in there:
----------------------------------------------------------------
dim owshShell
set owshShell = Createobject("Wscript.Shell")
owshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\In ternet
Settings\ZoneMap\Domains\charles.corp.com\httpS", "1","REG_DWORD"
-----------------------------------------------------------------
On one Windows XP sp2 computer it adds the entry to the Websites box fine
(at home) it looks fine like this in the GUI:
httpS://charles.corp.com
But at work when I run it on a Windows XP sp2 box it looks like this when
viewing it in the GUI after running the script:
httpS://*.charles.corp.com
Any idea what is going on? I want it to show up like this:
httpS://charles.corp.com
Thanks much,
Charles