• ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
We have new content about Hotkey issue, Click here to check it out!
HP Recommended

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

 

 

HP Recommended

use this to remap any existing key.

https://github.com/randyrants/sharpkeys

HP Recommended

Ctrl+Insert Shift+Insert also works with Fn+e combo for copy & paste.

--

TMS

--
TMS
HP Recommended

Great, thank you !

HP Recommended

I had the same issue with my elitebook and what solved the problem was to turn on my virtual keyboard and then enable insert mode. So to turn on virtual keyboard use the WINDOWS LOGO KEY+CTR+O

 

 

HP Recommended

I had the same issue with my elitebook and what solved the problem was to turn on my virtual keyboard and then enable insert mode. So to turn on virtual keyboard use the WINDOWS LOGO KEY+CTR+O

† 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>.