How to emulate context menu key when there's none on keyboard?

Imagine a keyboard that lacks Win key. That's easy to emulate - you just press CtrlEsc. However, on the keyboard I have now, there's no "right mouse" key (or "context menu" key or whatever it might be called - it's usually placed close to AltGr and bears the sign of three horizontal bars or something).

I'm very used to pressing that key and not having it around slows me down (not to mention the annoyance aspect). How can I emulate it on this limited keyboard?


Solution 1:

I think you're looking for Shift + F10.

EDIT: Some smaller keyboards require you to use the Fn key in combination with F1 - F12 to use them. Most of the time you can 'function lock' with Fn + CapsLock or change the default behavior of the F keys in the BIOS.

Solution 2:

The button you're referring to is called the 'Menu key' btw.

You can use AutoHotKey to remap the menu key to another key on your keyboard (even without having the key on your keyboard).

I detest the Caps Lock key, so I would use that instead:

Install AHK, and create a notepad file, ending with .ahk, containing:

CapsLock::AppsKey

This triggers the menu key (AppsKey) when the caps lock button is pressed.

If you don't want to use the Caps Lock key, see here for a list of keys AHK supports.