-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Business Notebooks
- Re: There is no “INSERT” key on the new 2018 “Hp 840 elitebo...

Create an account on the HP Community to personalize your profile and ask a question
Your account also allows you to connect with HP support faster, access a personal dashboard to manage all of your devices in one place, view warranty information, case status and more.
It has been a while since anyone has replied. Simply ask a new question if you would like to start the discussion again.
02-20-2020 02:27 AM - edited 02-20-2020 02:55 AM
Thank you all for your help. Based on all your feedback this is the AutoHotKey script that works fine for me.
It remaps the ScreenShareKey to PrintScreen, the AnswerKey to Insert and the HangUpKey to Calculator.
SendMode Input
#NoEnv
;Pressing {ScreenShare} generates {Ctrl+Alt+F22}
;Pressing {Answer} generates {Alt+F15 then Win}
;Pressing {Hangup} generates {Ctrl+Alt+F14 then Alt}
;Remap {ScreenShare} to {PrintScreen}
^!F22::Send {PrintScreen}
;Remap {Shift+ScreenShare} to {Shift+PrintScreen}
+^!F22::Send {LShift Down}{PrintScreen}{LShift Up}
;Remap {Answer} to {Insert}
!F15::
KeyWait,LWin
Send {Insert}
return
;Remap {Shift+Answer} to {Shift+Insert}
+!F15::
KeyWait,LWin
Send {LShift Down}{Insert}{LShift Up}
return
;Remap {Ctrl+Answer} to {Ctrl+Insert}
^!F15::
KeyWait,LWin
Send {LCtrl Down}{Insert}{LCtrl Up}
return
;Remap {Hangup} to {Calculator}
^!F14::
KeyWait,Alt
if WinExist("Calculator")
WinActivate
else
run calc.exe
return
03-09-2020 05:24 AM
use this to remap any existing key.
SharpKeys is a utility that manages a Registry key that allows Windows to remap one key to any other key. - randyrants/sharpkeys
- « Previous
- Next »
Be alert for scammers posting fake support phone numbers and/or email addresses on the community.
If you think you have received a fake HP Support message, please report it to us by clicking on "Flag Post".
† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the Terms of Use and Rules of Participation.
Didn't find what you were looking for?
Ask the community
† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.