5

I have a Windows 7 keyboard that has Ctrl-LWindows-Alt bottom left. Can I switch LWindows-Alt layout to Alt-LWindows?


Thanks for the answers!

I checked, downloaded the tools and tested very briefly. I must say that Will's answer is the best for me as I don't have to do anything but drag and drop. And as it just changes the registry, I expect no resource would be used. I remapped TAB and L-Windows key to Alt (meta) so that I can use Emacs with my PC like the one with my Mac.

prosseek
  • 6,054

5 Answers5

9

I would use Remapkey.exe. It is available for free in the Windows Server 2003 Resource Kit.

alt text

Kev
  • 1,184
William Hilsum
  • 117,648
8

As an AutoHotKey script:

LAlt::LWin
LWin::LAlt
yhw42
  • 2,267
2

You can do this with autohotkey pretty easily.

JNK
  • 8,426
1

The best way to do this is with Microsoft Keyboard Layout Creator. This allows you to create custom keyboard layouts, which are then installed and can be set as the system keyboard layout.

It'd be pretty easy to create a layout with the Alt and Windows keys switched, and this method has the advantage of residing much lower in the OS than a 3rd party tool or Hotkey program. This means that when you hit Alt, the OS sees it as LWindows (and of course vice versa). This is going to be more reliable than overriding the default behaviour of a system key, which AutoHotKey seems to offer.

imoatama
  • 1,944
0

See the answer to How to remap Right-Win and Right-Alt keyboard keys for information what Remapkey.exe. in @WilliamHilsum's answer does in the background (and what you easily can achieve with .reg files, the applying of which can be automated, too).