WIn+E to open XYplorer
Posted: 03 Mar 2015 10:56
I have enabled shell integration which works just fine but is it possible to override the Win+E shortcut to launch the program instead of windows explorer?
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Workaround: pin XY to taskbar at the left-most position -> <Win>+<1> (or any number >1 and <=9 for any pos to the right)adamc wrote:I have enabled shell integration which works just fine but is it possible to override the Win+E shortcut to launch the program instead of windows explorer?
Then another one: you'll find some hardcore AutoHotkey fellows here as well (*).adamc wrote:I found a program called Autohotkey to override the behavious of Win+E
Code: Select all
#NoEnv
;#NoTrayIcon
#Persistent
#SingleInstance, FORCE
xy = "D:\Portable\XYplorer\XYplorer.exe" /user="cmd"
#e::
Run %xy%
Return