在win7中已经习惯Win+E在原来窗口中打开我的电脑
Win10无法支持,看帖:https://tieba.baidu.com/p/4081383211
解决方法如下:
1、下载AutoHotkey
https://autohotkey.com/download/
并安装
2、在“此电脑”右键,新建“此电脑”的快捷方式,随便命个名,比如说PC
把这个快捷方式拷贝到C盘根目录
3、新建文本文档
输入以下内容:
#e:
; If there is no explorer already running
IfWinNotExist, ahk_class CabinetWClass
{
; Start explorer
Run C:\Windows\explorer.exe
; Wait for it ...
WinWait ahk_class CabinetWClass
; Set focus
WinActivate
}
; If explorer is already running
Else{
; Set focus
WinActivate
; Send CTRL + e shortcut to open a new tab ( change this as needed )
;^ = CTRL
;SendInput ^e
run C:\PC
}
return
文件另存为WinE.ahk(务必保证扩展名不是.txt,鉴别方法是更改成功后文件图标是一个红色的H,不是文本文档的图标)
4、把WinE.ahk放到启动文件夹,C:\Users\你的用户名\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
5、双击WinE,电脑右下角状态栏应该能看到绿色的H
6、Enjoy!
有问题请回帖
参考资料:
https://sourceforge.net/p/qttabbar/discussion/1148565/thread/7ea485d9/
感谢原贴中的:DesroQC 和 Pirate Creed
Win10无法支持,看帖:https://tieba.baidu.com/p/4081383211
解决方法如下:
1、下载AutoHotkey
https://autohotkey.com/download/
并安装
2、在“此电脑”右键,新建“此电脑”的快捷方式,随便命个名,比如说PC
把这个快捷方式拷贝到C盘根目录
3、新建文本文档
输入以下内容:
#e:
; If there is no explorer already running
IfWinNotExist, ahk_class CabinetWClass
{
; Start explorer
Run C:\Windows\explorer.exe
; Wait for it ...
WinWait ahk_class CabinetWClass
; Set focus
WinActivate
}
; If explorer is already running
Else{
; Set focus
WinActivate
; Send CTRL + e shortcut to open a new tab ( change this as needed )
;^ = CTRL
;SendInput ^e
run C:\PC
}
return
文件另存为WinE.ahk(务必保证扩展名不是.txt,鉴别方法是更改成功后文件图标是一个红色的H,不是文本文档的图标)
4、把WinE.ahk放到启动文件夹,C:\Users\你的用户名\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
5、双击WinE,电脑右下角状态栏应该能看到绿色的H
6、Enjoy!
有问题请回帖
参考资料:
https://sourceforge.net/p/qttabbar/discussion/1148565/thread/7ea485d9/
感谢原贴中的:DesroQC 和 Pirate Creed