十年前小众就写文章介绍过经典的原生快速启动 Win+R 大法的操作方法,这次 Ender 带来点新的。
其实由于 Windows 10 的更新,Cortana 的搜索框可以替代 Win+R 的存在了,直接在里面输入快捷方式的名称就可以启动程序。
快速搜索
- 新建 TXT 文件,输入需要使用的搜索引擎(比如 Google 的)的搜索地址以及其他信息
@echo off
set url=http://www.google.com/search?q=%1
start chrome %url%
其中斜体可替换
- 另存为 文件名.bat(比如 g.bat ),放入快速启动文件夹中,搜索时在 Win+R 输入 “g 关键字” 即可(注意空格)
系统控制
与上面的同理,以关机为例,输入 shutdown -p 另存为 sd.bat,关机时直接输入 sd 即可
依次,只要是系统能够接受的命令,都可以交给 Win + R 来快速启动,相比起各种辅助快速启动工具来说,Win + R 原生又方便,又酷又好用,真好用。
蛋疼的是Modern应用一直没法自定义快速启动
@Gtyrande 使用app的情况下一般都是平板吧,再用键盘岂不是多此一举?
在资源管理器路径输入
shell:::{4234d49b-0245-4df3-b780-3893943456e1}
进入
右键Modern应用, 创建快捷方式, 确定。
一闪而过的黑框…
@zzk 运行窗口咯
用vbs好了。
一直用rolan,感觉就很完美
@echo off
if [%1]==[] (
explorer.exe “https://www.bing.com”
) else (
explorer.exe “https://www.bing.com/search?q=%1+%2+%3+%4+%5+%6+%7+%8+%9”
)
exit
只要是系统能够接受的命令? 是什么意思?可以再举几个例子吗?
比如说百度搜索又应该怎么设置呢?
还是觉得WOX好用!!!
我觉得你说的对,还有listray ,还有 autohotkey
@echo off
set url=https://www.baidu.com/s?wd=%1&rsv_spt=1&rsv_iqid=0xfb89a61100061226&issp=1&f=8&rsv_bp=1&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=0&oq=һ&inputT=830&rsv_t=c79eJ5YjsF7Wx8EUMLAlR5l4nzapP1ADVFuPdpML5UT7CaRtrQBRgahoMvvK0Jh4F4rZ&rsv_pq=832561fd00066440&rsv_sug3=13&rsv_sug1=13&rsv_sug4=1184
start 360 %url%
360这个是你自己设置一个能在运行里运行的命令。
@echo off
set url=http://www.baidu.com/s?wd=%1&ie=UTF-8
start 360 %url%
这个吧,简洁一些。
黑框已经败笔了
为什么不写一个没有界面的应用来执行这些命令。
弱弱的问一句,快速启动文件夹在哪?
@echo off
if [%1]==[] (
explorer.exe “http://www.baidu.com”
) else (
explorer.exe “http://www.baidu.com/s?wd=%1+%2+%3+%4+%5+%6+%7+%8+%9”
)
exit
@echo off
if [%1]==[] (
explorer.exe “https://www.google.com”
) else (
explorer.exe “https://www.google.com.hk/search?q=%1+%2+%3+%4+%5+%6+%7+%8+%9”
)
exit
想请教一下“快速启动文件夹” 说的是哪个文件夹?如何设置?
@caibing 看这里: http://www.appinn.com/how-to-search-apps-cortana-win10/
@caibing
找到了,感谢博主分享!
针对本篇文章,我发现有个问题,不知道是不是个例,完成设置以后,win键打入“g 关键字”,默认选中的第一项是 “g 关键字 最佳匹配 搜索我的资料”,第二项才是我们需要的 “命令 g 关键字”。
有没有方法能够把第二项移到最前面去?这样子的话输入完以后直接回车就可以了,否则还需要多按一下方向键
同推荐Rolan
@zvv 是呀,好久不更新以后最近又开始更了
想知道怎么得到搜索引擎的搜索参数,比如我想弄个b站的搜索应该怎么弄 http://search.bilibili.com/ 后面应该加什么
::360
@echo off
set url=http://www.so.com/s?q=%1
start chrome %url%
——————————
::微博
@echo off
set url=http://s.weibo.com/weibo/%1
start chrome %url%
——————————
::苏宁
@echo off
set url=http://search.suning.com/%1/
start chrome %url%
——————————
::必应
@echo off
set url=http://cn.bing.com/search?q=%1
start chrome %url%
——————————
::youtobe
@echo off
set url=http://youtube.com/results?q=%1
start chrome %url%
——————————
::维基百科
@echo off
set url=http://zh.wikipedia.org/wiki/%1
start chrome %url%
——————————
::淘宝
@echo off
set url=http://s.taobao.com/search?q=%1
start chrome %url%
——————————
::知乎
@echo off
set url=http://www.zhihu.com/search?q=%1
start chrome %url%
——————————
::搜狗
@echo off
set url=http://www.sogou.com/web?query=%1
start chrome %url%
——————————
::谷歌
@echo off
set url=http://www.google.com/search?q=%1
start chrome %url%
——————————
::百度百科
@echo off
set url=https://baike.baidu.com/item/%1
start chrome %url%
——————————
::百度
@echo off
set url=http://www.baidu.com/s?wd=%1&ie=UTF-8
start chrome %url%
——————————
::豆瓣电影
@echo off
set url=http://movie.douban.com/subject_search?search_text=%1&cat=1002
start chrome %url%
——————————
::B站
@echo off
set url=https://search.bilibili.com/all?keyword=%1
start chrome %url%
——————————
::百度贴吧
@echo off
set url=http://tieba.baidu.com/f?kw=%1&ie=utf-8
start chrome %url%
——————————
::国美
@echo off
set url=http://www.gome.com.cn/search?question=%1
start chrome %url%
——————————
::当当
@echo off
set url=http://search.dangdang.com/search.php?key=%1
start chrome %url%
——————————
::天猫
@echo off
set url=http://list.tmall.com/search_product.htm?q=%1&type=p
start chrome %url%
——————————
::亚马逊
@echo off
set url=http://www.amazon.cn/s/ref=nb_sb_noss?field-keywords=%1
start chrome %url%
——————————
京东不知道怎么弄的
还有如果有搜索词中有空格 空格后面的就传不进去