Custom Keyboard Shortcuts with AutoHotKey

Goal: Remap keyboard combinations to different characters using AutoHotKey.

Limitation: Maximum two keys combinations.

Install AutoHotKey

Download and install. Documentation.

Map Alt+Z to <

lessThan.ahk

!z::
Send, <
return

Map Alt+X to >

greaterThan.ahk

!x::
Send, >
return

Activate

Double click the .ahk files to run them.

Run on Startup

Create shortcuts to the .ahk files and copy them into the Windows startup folder.