Is there a script to change the default web page?

Please assist...

Thanks,

Lee

RE: Change Default web page by JerryMac

JerryMac
Wed Jun 20 09:00:00 CDT 2007

If the user is logged in you can just do it by using this to change a
registry key...

Set Shell = createobject ("wscript.shell")
IEKey = "HKCU\Software\Microsoft\Internet Explorer\Main\"
IEValue = "http://whateverpageuwant.com"
shell.RegWrite IEKey &"Start Page", IEValue, "REG_SZ"

This worked great for me...however it does require user to be logged in
since it uses the HKEY_Current_User registry hive.



"lmossolle" wrote:

> Is there a script to change the default web page?
>
> Please assist...
>
> Thanks,
>
> Lee