I was wondering how we can change the Win-E key combination to another target besides the default C:\.

I've tried changing the shortcut in Start -> Programs -> Accessories -> Windows Explorer to %SystemRoot%\explorer.exe "C:\My Folder\", in case Win-E references this shortcut, but that did not help.

Any ideas?

link|improve this question
1  
Possible duplicate: superuser.com/questions/102249. Basically (Superuser's favorite answer) Autohotkey. autohotkey.com/docs/misc/Override.htm – hyperslug Apr 12 '10 at 1:08
feedback

1 Answer

up vote 2 down vote accepted

The easiest thing you can do is set up an AutoHotKey script:

(I am no expert here, but this should work)

#e::Run COMMAND

For example

#e::Run calc

will start calculator when the Windows Flag+E are pressed.

EDIT-

For your specific case, Copy and paste this:

#e::RUN Explorer.exe "c:\MY Folder\"

and save it as anything with a .ahk file extension. Next, install AutoHotKey and then run the file. It should intercept Windows Flag+E and launch what you want.

link|improve this answer
Thanks! This helps out a bunch. – Onion-Knight Apr 12 '10 at 1:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.