Can I stop the F7 key from launching the default email application in Windows 10?

0

Since I changed to Windows 10, every time I press F7 a new window of Outlook is launched.

I tried to override this behavior in applications (Word, Excel, Visual Studio) but any of them seem to detect the F7 input event.

Why is F7 launching the e-mail app, and how can I stop it?

Also, I searched google all around and couldn't find an answer.

LMB

Posted 2016-02-16T15:01:32.637

Reputation: 97

It is probably your keyboard. Some deafult to F-keys, some to FN-keys. – Zina – 2016-02-16T15:05:11.023

F1-F12 are all ok, except for F7. My keyboard is a Kinesis Advantage Pro with default config. – LMB – 2016-02-16T15:09:28.200

So it is a programmable keyboard. Check your settings. Try to change the behaviuor for F7 and see what will happen. – Zina – 2016-02-16T16:04:19.243

User Manual – DavidPostill – 2016-02-16T21:22:43.847

I can't assign a different keycode to a key. I can only remap existent keycodes. The problem is the F7 and F8 keys do not input their usual keycode. Instead, they return a keycode larger than a byte, which can not be mapped using SharpKeys, or KeyTweak, or KeyMapper =/ – LMB – 2016-02-17T22:22:20.327

Answers

0

Using AutoHotKey, you can rewrite F7 to be another shortcut or simply disable it using this line of code:

Map F7 to Escape: F7::Escape

Disable F7: F7::

Michelfrancis Bustillos

Posted 2016-02-16T15:01:32.637

Reputation: 121