On Windows PCs, the context button is awesome! But on some keyboards, mainly laptops, they've stopped including a dedicated button.
Is there a key combination that brings up the context menu?

On Windows PCs, the context button is awesome! But on some keyboards, mainly laptops, they've stopped including a dedicated button.
Is there a key combination that brings up the context menu?

While not directly an answer to your question, there are possibly better solutions than Shift + F10. Just as an example, it doesn't work here in the Chrome browser, while I'm typing this answer. Also in most programs where I actually need the context menu key (aka Apps-Key) I use it so often, that a "use both hands or stretch one awkwardly" key combination like Shift + F10 is unfavorable.
Note however, that I can only comment on Windows solutions. Also these solutions assume that you have other keys, which you are willing to sacrifice.
Windows allows remapping keys through the registry. Sadly, this doesn't use any straight-forward syntax, so you're probably better off using a third-party utility to generate the remappings, such as SharpKeys.
The screenshot shows my configuration for the Thinkpad Edge E540, where the context menu key has been replaced by Print Screen, but it offers utility buttons (open calc.exe, lock screen, open browser, and open "My Computer") which are entirely useless to me.
Thankfully, it uses descriptive names for the keys, such that it is unnecessary to find out the keycodes yourself.
Remapping the keys directly with the registry would still require third-party software in order to find out the keycodes (especially for nonstandard keys), so I recommend not bothering to try it as long as SharpKeys works on your device.
Alternatively, you can remap keys with more general-purpose utilities such as AutoHotkey. I used to use the script
; Print is Context, Shift-Print is Print.
$PrintScreen::Send {AppsKey}
$+PrintScreen::Send {PrintScreen}
to remap Print Screen to Apps and Shift + Print Screen to Print Screen.
One weakness of AutoHotkey solutions however is that some programs, that access keyboard events on a lower level, such as many games, will not go through AutoHotkey.
Shift + F10 is such a key. Unfortunately, it's poorly supported in many applications (e.g., KDE 4 Dolphin does not seem to support it).
As a workaround, I use a global binding that translates it into the standard menu key.
@kdb has explained how to do that on Windows, so you can use their solution there. On Linux, I've got it to work with AutoKey.
Simply add this script and map it to Shift + F10.
keyboard.send_keys('<menu>')
Note that you must save the script before the binding has effect.

Apart from the standard Shift + F10, my Dell laptop has one more that works in a lot of situations: Fn + Right Ctrl.