Se você usar o Autohotkey , obtenha o mais novo lançamento da página inicial "The AutoHotkey Foundations" no link
O AutoHotkey (AHK) é um software gratuito de criação e automação de código aberto para Windows que, com o tempo, evoluiu para uma linguagem de script completa.
3 exemplos simples
Uma tecla de atalho
^!Z:: ; Ctrl+Alt+Z becomes a hotkey to type a pre defind text or keys:
Send Sincerely,{Enter}John Smith
return
Ou uma Hotstring
:*:btw::by the way ; auto expands to "by the way" when "btw" is typed
Ou um remapeamento
a::b ; remaps the "a" key to the "b" key
documentação mais atualizada link