Vbscript / Operating System / Set Internet Explorer Homepage
Set the Internet Explorer homepage for the current user. Useful for changing the homepage set via group policy (place the script in the startup folder).
Set objWShell = WScript.CreateObject("WScript.Shell")
StartPage = "http://www.google.com" objWShell.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page", StartPage
Please note that a disclaimer applies to any code on this page.
|