Skip to Content
Valsogard Enterprise LLC - Technical Documentation Website
ComputersAutoHotKey

AutoHotKey

AutoHotKey guide by Drago3D

It’s advisable to put your script .exe file inside Windows Startup folder. You can access Windows startup folder by opening Run (Win + R) and then typing shell:common startup. This will open your Windows startup folder. Place .exe inside.

Modifier Keys

Shift

Code: + Example: +S will output Shift+S

Control

Code: ^ Example: ^S will output Control+S. This is often used for File->Save in many programs.

Alt

Code: ! Example: !s will output Alt+s.

Windows

Code: WinKey Example:

Meh Key

Code: ^+! Example: ^+!S will output Control+Shift+Alt+S.

Hyper Key

Code: ^+!# Example: ^+!#S will output Control+Shift+Alt+Win+S.

Drago’s comment: I personally love Hyper Key because it allows for many different combinations.

KeyHistory

#Persistent #InstallKeybdHook KeyHistory
Last updated on