0

Possible Duplicate:
How to create a new keyboard shortcut using the Windows key on WinXP

Is it possible to define new WinKey+some_key shortcuts? How would one go about it?

Also, is it possible to somehow redefine Win-E (starts Windows Explorer) shortcut in the registry?

Rook
  • 24,289

1 Answers1

5

One of the easiest, and my favorite, ways to use keyboard shortcuts is with AutoHotkey (AHK). Defining a new Windows+Key shortcut can be as simple as:

#x::

;do something

Exit

The documentation is a great start and provides many examples. If you need more help, the community forum is another great resource.

iglvzx
  • 23,818