Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 6
    This answer doesn't actually help anyone who isn't allowed to install third party software on the current computer (like me). If I was allowed to use this program to find out scancodes, I might as well just use the program to remap keys. Commented Jan 16, 2019 at 7:01
  • While that is a frustrating situation to not be able to install programs, it is admittedly also odd if you have admin access, but can't install programs. Because the programs above do write to the registry key at "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" with a binary value named "Scancode Map". If you intend to do this as a "set and forget" thing, you could use Sharpkeys on a different system, and then export the registry key in question. Then you can import it on a different system (granted that things such as the keyboard layout are the same)
    – Testerhood
    Commented Aug 26, 2023 at 15:08
  • The other alternative is that you can check out the source code of Sharpkeys, which has the relevant scan codes written inside this class file here: github.com/randyrants/sharpkeys/blob/master/SharpKeys/… Search for "Special: Left Windows" inside that code.
    – Testerhood
    Commented Aug 26, 2023 at 15:11