Quote:
Originally posted by No_Style
Just typed stuff into IE bar and that's it. One of the links which remain is DriverHeaven related ones.
|
i dont know you still having the prob or not.. anyway i like this kind of thing.. you can try my fix!
2 steps.. this's for windows XP only
1st let bump all old addresses off system memory..
make a .reg file from below and import it into your windows registry..
---------------------------
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs]
"url1"="http://www.aaa.com/"
"url2"="http://www.bbb.com/"
"url3"="http://www.ccc.com/"
"url4"="http://www.ddd.com/"
"url5"="http://www.eee.com/"
"url6"="http://www.fff.com/"
"url7"="http://www.ggg.com/"
"url8"="http://www.hhh.com/"
"url9"="http://www.iii.com/"
"url10"="http://www.jjj.com/"
"url11"="http://www.kkk.com/"
"url12"="http://www.lll.com/"
"url13"="www.mmm.com"
"url14"="http://www.nnn.com/"
"url15"="www.ooo.com"
"url16"="www.ppp.net"
"url17"="www.qqq.com"
"url18"="www.rrr.com"
"url19"="www.sss.com"
"url20"="www.ttt.com"
"url21"="www.uuu.com"
"url22"="www.vvv.com"
"url23"="www.
www.com"
"url24"="www.xxx.com"
"url25"="www.yyy.com"
----------------------------------------
2nd step
copy below (without the lines) and save it as a .vbs file ( i like you to use windows script rather than using windows .reg file)
----------------------------------------
' ErasingTypedWebAddresses.vbs - by panging
' Quickly erase all typed web addresses in IE6 Windows XP
Option Explicit
On Error Resume Next
Dim WshShell, Message
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url1"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url2"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url3"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url4"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url5"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url6"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url7"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url8"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url9"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url10"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url11"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url12"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url13"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url14"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url15"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url16"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url17"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url18"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url19"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url20"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url21"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url22"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url23"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url24"
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\url25"
Set WshShell = Nothing
Message = "All typed web addresses should now be erased." & vbCR
Message = Message & "No need to reboot your computer." & vbCR
Message = Message & "Good Luck! - You need it. Click OK to exit."
MsgBox Message, 4096,"DONE!"
-----------------------------------------------
pls let me know if you use it and it worked, let me know anyway if its not..THXs