Click here to Skip to main content
Click here to Skip to main content

How to change the home page of Internet Explorer using a script

By , 31 Aug 2007
 

Introduction

This article explains how to change the home page of Internet Explorer using a script.

Using the code

The start page of Internet Explorer is saved in the Registry. If you open the Windows Registry Editor (Go to Start->Run, type regedit) and navigate to this following key location, you will see your current start page for IE:

My Computer->HKEY-CURRENT_USER->Software->Microsoft->InternetExplore->Main&-gt;Start Page

By changing this manually, you can set a different home page.

Following code shows you how to do it using VBScript

Define two objects to store the Shell object.

Dim objShell, RegLocate

Set objShell to a new "WScript.Shell" object.

Set objShell = WScript.CreateObject("WScript.Shell")

If an error occurs, resume the next instruction:

On Error Resume Next

This is the Registry path to the home page of IE:

RegLocate = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\StartPage"
objShell.RegWrite RegLocate,"http://www.earn100more.blogspot.com","REG_SZ"

Show the finished message and quit:

WScript.Echo "Done"
WScript.Quit ' Quit the script 

Full source

'Change home page of ie
'Author : Thilina Hasantha (thilina.hasantha@gmail.com)

Dim objShell, RegLocate
Set objShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
'This is the registry path to home page of ie
RegLocate = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\Start Page"
objShell.RegWrite RegLocate,"http://www.earn100more.blogspot.com","REG_SZ"
WScript.Echo "Done"
WScript.Quit ' Quit the script

Points of interest

Be careful when playing with the Windows Registry.

History

  • Posted on 08/31/2007.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Thilina Hasantha
Web Developer
Sri Lanka Sri Lanka
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralStill simpler ...memberVasudevan Deepak Kumar31 Aug '07 - 7:22 
GeneralRe: Still simpler ...memberThilina Hasantha31 Aug '07 - 8:30 
GeneralRe: Still simpler ...memberBlair C. Bonnett4 Sep '07 - 18:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 31 Aug 2007
Article Copyright 2007 by Thilina Hasantha
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid