Change Internet Explorer Title - VBS

In this tutorial I'll teach you how you can change the internet explorer title using visual basic scripts.

1. Open notepad.exe
2. Type in:

Set shl = CreateObject("Wscript.shell") 

Shl.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title","Windows Internet Explorer"

The text in blue is your actual title, change this to whatever you want the title to be.
For example:

Set shl = CreateObject("Wscript.shell") 

Shl.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title","I have been hacked by Doom"

 

3.Now you have to save the document in notepad as: 

IECHANGER.VBS




Now you should see this:

If you run this vbs file your IE title will be changed. To put your IE settings back to normal you can always download the IE Settings Manager from the downloads section.


Tutorial made by Doom


Topic: Change Internet Explorer Title - VBS

No comments found.