Removing individual URLs from autocomplete

G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.basics (More info?)

Is there a way to delete an individual URL from the dropdown list which is
shown when the first few letters are typed into the address bar in IE6?
Thanks, Mike Fanning
 

tonys

Distinguished
Mar 31, 2004
84
0
18,630
Archived from groups: microsoft.public.windowsxp.basics (More info?)

Mike Fanning wrote:
: Is there a way to delete an individual URL from the dropdown list
: which is shown when the first few letters are typed into the address
: bar in IE6? Thanks, Mike Fanning
Edit the registry...bad idea. Some programs offer removal of MRU's like
Adaware but this would clear all of them.
TonyS
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.basics (More info?)

Do a Google search for "edit urls". You'll find it.

--
Just my 2¢ worth,
Jeff
__________In response to__________
"Mike Fanning" <shrdlu1@yahoo.com> wrote in message news:OtIE$UysEHA.2664@TK2MSFTNGP12.phx.gbl...
| Is there a way to delete an individual URL from the dropdown list which is
| shown when the first few letters are typed into the address bar in IE6?
| Thanks, Mike Fanning
|
|
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.basics (More info?)

Press delete when it's highlighted.

--
----------------------------------------------------------
http://www.uscricket.com
"Mike Fanning" <shrdlu1@yahoo.com> wrote in message news:OtIE$UysEHA.2664@TK2MSFTNGP12.phx.gbl...
> Is there a way to delete an individual URL from the dropdown list which is
> shown when the first few letters are typed into the address bar in IE6?
> Thanks, Mike Fanning
>
>
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.basics (More info?)

"Delete" causes the dropdown list to disappear, but the URL shich is
highlighted is not deleted. It doesn't matter if the URL is selected with
cursor keys or the mouse. Are there any other suggestions.
Thanks, Mike Fanning


"David Candy" <david@mvps.org> wrote in message
news:u1kQxfysEHA.3152@TK2MSFTNGP14.phx.gbl...
Press delete when it's highlighted.

--
----------------------------------------------------------
http://www.uscricket.com
"Mike Fanning" <shrdlu1@yahoo.com> wrote in message
news:OtIE$UysEHA.2664@TK2MSFTNGP12.phx.gbl...
> Is there a way to delete an individual URL from the dropdown list which is
> shown when the first few letters are typed into the address bar in IE6?
> Thanks, Mike Fanning
>
>
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.basics (More info?)

Sorry that doesn't work for the address bar

use
Clear Typed URL MRU.vbs
This clears the addresses typed into Explorer or Internet Explorer and asks to open the History folder to delete items from the History list.

'ClearTypedURL.vbs
'Selectively clears individual items from the history for URLs typed into IE.
'
'Serenity Macros http://www.angelfire.com/biz/serenitymacros
'David Candy davidc@sia.net.au
'
On Error Resume Next
strExplain="ClearTypedURL clears individual items from the history of URLs typed into Internet Explorer." & vbCRLF & "The program will prompt for each item in the list." & vbCRLF & vbCRLF
strTitle="Clear Run MRU"

Dim Sh
Set Sh = WScript.CreateObject("WScript.Shell")
ReportErrors "Creating Shell"
Sh.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\" & Wscript.ScriptName & "\", Chr(34) & Wscript.ScriptFullName & Chr(34)
Sh.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\" & Left(Wscript.ScriptName, Len(Wscript.ScriptName)-3) & "exe" & "\", Chr(34) & Wscript.ScriptFullName & Chr(34)
ReportErrors "Updating App Paths"

NoOfURLs=0
x=1
Do
t=Sh.RegRead("HKCU\Software\Microsoft\Internet Explorer\TypedURLs\Url" & CStr(x))
If Err.Number=-2147024894 then
Err.Clear
Exit Do
Else
NoOfURLs=NoOfURLs + 1
x=x+1
End If
Loop

If MsgBox (strExplain & "Number of entries" & vbtab & NoOfURLs & vbCRLF & vbCRLF & "Continue?", vbYesNo + vbInformation, strTitle) = 6 then
Dim MRUItem()
ReDim Preserve MRUItem(0)
For x=0 to NoOfURLs - 1
MItem=Sh.RegRead("HKCU\Software\Microsoft\Internet Explorer\TypedURLs\Url" & CStr(x +1))
Sh.Regdelete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\Url" & CStr(x + 1)
If MsgBox ("Do you want to delete " & vbcrlf & vbcrlf & MItem & vbcrlf & vbcrlf & "Yes" & vbtab & "To delete" & vbcrlf & "No" & vbtab & "To keep", vbYesNo + vbQuestion, strTitle) <> 6 then
ReDim Preserve MRUItem(UBound(MRUItem)+1)
MRUItem(UBound(MRUItem))=MItem
End If
Next
If UBound(MRUItem) > 0 Then
For x=1 to UBound(MRUItem)
Sh.RegWrite "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\Url" & CStr(x),MRUItem(x)
Next
End If
If MsgBox ("Visited URLs are also stored in the History folder. Each item can be deleted there." & vbcrlf & vbcrlf & "Open History folder?", vbYesNo + vbQuestion, strTitle) = 6 then
Sh.Run "Explorer /e,/root," & Sh.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\History")
End If
End If

VisitSerenity
ReportErrors(test)

Sub ReportErrors(strModuleName)
If err.number<>0 then Msgbox "An unexpected error occurred. This dialog provides details on the error." & vbCRLF & vbCRLF & "Error Details " & vbCRLF & vbCRLF & "Script Name" & vbTab & Wscript.ScriptFullName & vbCRLF & "Module" & vbtab & vbTab & strModuleName & vbCRLF & "Error Number" & vbTab & err.number & vbCRLF & "Description" & vbTab & err.description, vbCritical + vbOKOnly, "Something unexpected"
Err.clear
End Sub


Sub VisitSerenity
If MsgBox("This program came from the Serenity Macros Web Site" & vbCRLF & vbCRLF & "Would you like to visit Serenity's Web Site now?", vbQuestion + vbYesNo + vbDefaultButton2, "Visit Serenity Macros") =6 Then
sh.Run "http:\\www.angelfire.com\biz\serenitymacros"
End If
End Sub

--
----------------------------------------------------------
http://www.uscricket.com
"Mike Fanning" <shrdlu1@yahoo.com> wrote in message news:eyhfhZzsEHA.2804@TK2MSFTNGP14.phx.gbl...
>
>
> "Delete" causes the dropdown list to disappear, but the URL shich is
> highlighted is not deleted. It doesn't matter if the URL is selected with
> cursor keys or the mouse. Are there any other suggestions.
> Thanks, Mike Fanning
>
>
> "David Candy" <david@mvps.org> wrote in message
> news:u1kQxfysEHA.3152@TK2MSFTNGP14.phx.gbl...
> Press delete when it's highlighted.
>
> --
> ----------------------------------------------------------
> http://www.uscricket.com
> "Mike Fanning" <shrdlu1@yahoo.com> wrote in message
> news:OtIE$UysEHA.2664@TK2MSFTNGP12.phx.gbl...
>> Is there a way to delete an individual URL from the dropdown list which is
>> shown when the first few letters are typed into the address bar in IE6?
>> Thanks, Mike Fanning
>>
>>
>
>