Ie With Google In Address Bar

Hi guys, this is a really cool Mod to IE [to the ones that use it!] i use Opera mainly...I find some *.reg/*.vbs files in a windows tweaking site, that can do it:

http://www.kellys-korner-xp.com/xp_tweaks.htm

here is the description_

searchgkb.reg

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gkb]

@=";http://www.google.com/search?as_q=%s&as_sitesearch=support.microsoft.com"

" "="+"

"+"="%2B"

"%"="%25"

"&"="%26"

searchgtn.reg

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gtn]

@=";http://search.microsoft.com/default.asp?so=RECCNT&siteid=us&p=1&nq=NEW&qu=%s"

" "="+"

"+"="%2B"

"%"="%25"

"&"="%26"

addressgoogle.vbs

Option Explicit

Set ws = WScript.CreateObject("WScript.Shell")

Dim ws, n, p, itemtype, MyBox, Title, vbdefaultbutton

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\g\"

itemtype = "REG_SZ"

n = ";http://www.google.com/search?q=%s"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\g\ "

itemtype = "REG_SZ"

n = "+"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\g\%"

itemtype = "REG_SZ"

n = "%25"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\g\&"

itemtype = "REG_SZ"

n = "%26"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\g\+"

itemtype = "REG_SZ"

n = "%2B"

Ws.RegWrite p, n, itemtype

Title = "To use, type in: g followed by a space then the search term."

MyBox = MsgBox(Title,4096,"Google Search from the Address Bar")

kbgoogle.vbs

Option Explicit

Set ws = WScript.CreateObject("WScript.Shell")

Dim ws, n, p, itemtype, MyBox, Title, caption

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gk\"

itemtype = "REG_SZ"

n = ";http://www.google.com/search?as_q=%s&as_sitesearch=support.microsoft.com"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gk\ "

itemtype = "REG_SZ"

n = "+"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gk\%"

itemtype = "REG_SZ"

n = "%25"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gk\&"

itemtype = "REG_SZ"

n = "%26"

Ws.RegWrite p, n, itemtype

p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\gk\+"

itemtype = "REG_SZ"

n = "%2B"

Ws.RegWrite p, n, itemtype

Caption = "Google Search for KB articles from the Address Bar"

Title = "To use, type in: gk (followed by a space) then Q######."

MyBox = MsgBox(Title,4096,"Finished")

----------------------------------------------------------------------------------------------

Now can someone could make this hack to windows explorer, :naughty: if someone can do it then our real approach to finder is very near in conjuntion with our member sketching tip for remove the main menu:

http://www.aqua-soft.org/board/index.php?s...opic=12414&st=0

thanks

#115981

Wow, before moving to Firebird/fox I always wanted to use Google as the default search engine. I wasn't about to DL the Google bar though. <_<

I wish I knew more about editing the registry to try an explorer equivalent.

#116165

yeah, sketching, the same with me, i don't use IE but i just posted here the description to see if someone that have some skillz on registry hacks,

can do it with explorer. ;)

#116202