Page 1 of 1

WIn+E to open XYplorer

Posted: 03 Mar 2015 10:56
by adamc
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?

Re: WIn+E to open XYplorer

Posted: 03 Mar 2015 13:39
by Filehero
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?
Workaround: pin XY to taskbar at the left-most position -> <Win>+<1> (or any number >1 and <=9 for any pos to the right)


Cheers,
FH

Re: WIn+E to open XYplorer

Posted: 03 Mar 2015 14:56
by adamc
Ok, that's one way i guess , thanks!

I found a program called Autohotkey to override the behavious of Win+E :)

Re: WIn+E to open XYplorer

Posted: 03 Mar 2015 15:24
by Filehero
adamc wrote:I found a program called Autohotkey to override the behavious of Win+E :)
Then another one: you'll find some hardcore AutoHotkey fellows here as well (*). :wink:


*: not me.

Re: WIn+E to open XYplorer

Posted: 03 Mar 2015 16:51
by bdeshi
The necessary AHK script is very simple:

Code: Select all

#NoEnv
;#NoTrayIcon
#Persistent
#SingleInstance, FORCE

xy = "D:\Portable\XYplorer\XYplorer.exe" /user="cmd"
#e::
Run %xy%
Return
save this as an ahk file, then run it once manually or run on startup.

*Edit* Don't forget to change the path to XY for the "xy" variable in this script :)
*Edit2* now also allows cmdline args! *Edit3* Consequently don't forget to update/remove the example `/user="cmd"` switch