|
|
楼主 |
发表于 2012-11-12 02:58:38
|
显示全部楼层
IE8搜索程序设置
本帖最后由 cjiabing 于 2012-11-12 14:06 编辑
百度、谷歌、搜狗、有道、狗狗、淘宝、维基
基本上努力实现了基本功能,但有两个小问题:
一是淘宝的搜索词出现乱码;
二是每个搜索程序前的小图标没有建立,显示没有启用。
- @echo off&echo IE8搜索引擎(百度、谷歌、搜狗、有道、狗狗、淘宝、维基)-批处理之家&cd.>_IE8Search.reg&more +1 %0>>_IE8Search.reg®edit -s _IE8Search.reg&del _IE8Search.reg /q&echo 请重启IE浏览器后试试效果!注意弹出对话框时选择默认搜索程序!&pause&exit
- Windows Registry Editor Version 5.00
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes]
- "DefaultScope"="Baidu"
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Baidu]
- "DisplayName"="百度"
- "URL"="http://www.baidu.com/s?tn=zwfec_pg&ie=utf-8&word={searchTerms}"
- "SortIndex"=dword:00000001
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Google]
- "DisplayName"="谷歌"
- "URL"="http://www.google.com/search?sourceid=ie8&rls=com.microsoft:zh-CN&ie=utf8&oe=utf8&q={searchTerms}"
- "SortIndex"=dword:00000002
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Sougou]
- "DisplayName"="搜狗"
- "URL"="http://www.sogou.com/web?query={searchTerms}"
- "SortIndex"=dword:00000003
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Youdao]
- "DisplayName"="有道"
- "URL"="http://dict.youdao.com/search?q={searchTerms}&keyfrom=ie8.suggest"
- "SortIndex"=dword:00000004
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Gougou]
- "DisplayName"="狗狗"
- "URL"="http://www.gougou.com/search?search={searchTerms}"
- "SortIndex"=dword:00000005
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Taobao]
- "DisplayName"="淘宝"
- "URL"="http://search8.taobao.com/browse/search_auction.htm?q={searchTerms}&cat=0&pid=mm_16665530_0_0&viewIndex=7"
- "SortIndex"=dword:00000006
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Wikipedia]
- "DisplayName"="维基"
- "URL"="http://zh.wikipedia.org/w/index.php?title=Special:%E6%90%9C%E7%B4%A2&search={searchTerms}"
- "ShowSearchSuggestions"=dword:00000001
- "SuggestionsURL_JSON"="http://zh.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}&namespace=0"
- "SuggestionsURL"="http://zh.wikipedia.org/w/api.php?action=opensearch&format=xml&search={searchTerms}&namespace=0"
- "OSDFileURL"="http://zh.wikipedia.org/w/opensearch_desc.php"
- "FaviconURL"="http://zh.wikipedia.org/favicon.ico"
- "FaviconPath"="C:\\WINDOWS\\Web\\ico\\weiji.ico"
- "SortIndex"=dword:00000007
复制代码 |
|