As a workaround you can remap keys using Autohotkey. It is a very powerful tool for keyboard tweaking and lightweight too.
You can map any Key or combination of keys to work as Pause/Break.
It uses syntax: OriginKey::DestinationKey
for remapping.
Replace OriginKey
by the key you want to use as Pause/Break. (say Ctrl+Alt+a)
and replace DestinationKey
with Pause/Break.
^+a::Break
Above AHK script will cause Ctrl+Alt+a to send Break keypress.
Learn more about Remapping Keys here.
Other Option:
Windows Registry Hack to Remap Keys using SharpKeys.
3One workaround could be plugging in a usb keyboard that does have those keys – None – 2012-10-18T21:17:06.347
1Not even close to a programming question (other than that programmers use keyboards). – Eight-Bit Guru – 2012-10-18T21:25:36.153
Doesn't need to be a programming question to be here. http://superuser.com/faq
– CatShoes – 2012-11-21T15:48:59.770