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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Explorer searching

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Can anyone help, please? I'm trying to set my default, address-bar search engine to look at yahoo instead of MSN when I just type in a word into the address bar, does anyone know if this can be done? I've tried changing the hosts file in c:\windows\system32\drivers\etc but this didn't work, and also adding information to the registry, btu still can't get it to work, has anyone else, because this is driving me mad......
 
Click the Search button on IE's toolbar. Click the Customize entry that appears in the left pane window. choose Autosearch Settings button and change the drop-down box to Yahoo.

reghakr
 
Hello, ChrisPaulWilson.

And to do that directly with registry, the .reg file should be as follows.

;---------below this line---yahoosearch.reg-----
Code:
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl]
@="[URL unfurl="true"]http://search.yahoo.com/bin/search?p=%s"[/URL]
;---------above this line---yahoosearch.reg-----

But, the customize in the IE interactive setting is probably the safer way.

regards - tsuji
 
tsuji,

Will your registry hack work if Yahoo is not in the list reghakr mentions, what if you want to use Google instead?
 
Hello, paulwood.

On this issue, I cannot speak with confidence. Verification is needed all the time. In particular, I think I should have made a precision on the MSIE version. It's good only for 4.x. I believe MSIE5.x starts to complicate the matter quite a lot.

Suppose not the google, but the archirival Netscape. On 4.x, the line I would propose is:

Code:
@="[URL unfurl="true"]http://keyword.netscape.com/keyword/%s"[/URL]

Similar construction for google if you get the google search engine query form with %s the query string operating on the server side.

I can take the word for granted per mskb article:
and for restoring to default:

The whole arsenal seems largely insufficient for MSIE5.x. But, then, I cannot speak with confidence. I've not had the chance to go to the bottom of the matter there. I'm not sure if it is possible at all.

regards - tsuji
 
To all:

I don't have the time to experiment, but there is a way to set Google as the default search engine (in the cut and paste example below). The biggest problem is that you loose all other search engines. As tsuji suggested, possible just chnaging this value:


to


may be a possibility.
=============BEGIN CUT===================
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Search Page"=""Search Bar"="
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchURL]
""="
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Search]
"SearchAssistant"="================END CUT=================

reghakr
 
Hello, all.

For the sake of accuracy, the google query for _all_ groups can be set in the form:

Code:
@="[URL unfurl="true"]http://groups.google.com/groups?q=%s"[/URL]

A more elaborate form with search on English language groups and 25 findings per page display:

Code:
@="[URL unfurl="true"]http://groups.google.com/groups?q=%s&num=25&hl=en&meta="[/URL]

Google has many subgroups. So a search on a specific subgroup can be done by looking at url on a simple trial basis.

regards - tsuji
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top