Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

batch to change homepage 1

Status
Not open for further replies.

JimmyZ1

Technical User
Mar 31, 2004
397
does anyone have a batch or vbs to change a users homepage?
 
There are several ways to do this. I would use reg.exe from the resource kit to change the following value:
HKCU\Software\Microsoft\Internet Explorer\Main\Start Page

The batch or command line method would be:

reg add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t REG_SZ /d /f

To set the home page to Google and force overwriting whatever is there.

You could also use the vbs regwrite or you could export the registry key, create a .reg file, remove the unnecessary stuff you don't want to change and then "merge" that into the registry of another computer.
 
sweet thanks, that's all i needed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top