Clear Drop Down Search History Box. (VBScript)

'vista_clear_search.vbs - Clears Drop Down Search History in Windows Vista
Option Explicit
On Error Resume Next
Dim p1, WshShell, MyBox
p1 ="HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs\"
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegDelete p1
Set WshShell = Nothing
MyBox = MsgBox("Drop Down Search History has been cleared.", 4096, "Finished")

Download


Back to Line 15