How to download and install AutoHotkey

Updated: 12/31/2020 by Computer Hope

AutoHotkey is a fantastic free and open source Microsoft Windows tool that lets you create macros, scripts, and automate frequently performed tasks on your computer. Below are the steps to install AutoHotkey on your computer.

  1. Download AutoHotkey.

AutoHotkey download page

  1. When the download is complete, run the installer. The UAC (User Account Control) prompt asks for permission to install it. Choose Yes.

AutoHotkey installation User Access Control prompt

  1. The installer gives you the option of Custom Installation or Express Installation. To view all your installation options, you can choose Custom Installation. Otherwise, it's okay to choose Express Installation.

AutoHotkey installation options

  1. When the installation is complete, you are presented with another menu. Choose Run AutoHotkey.
  2. Once the AutoHotkey help file opens, you can read or close it now. To open it later, you can find it in your Start menu under AutoHotkeyAutoHotkey Help File.
  3. The installer will then ask to edit a new AutoHotkey script. Choose Yes.

AutoHotkey installer edit new script prompt

  1. The installer now exits, and a new text file opens in Notepad, which will be our script. (A script is a plain text file containing commands to be run by another program (e.g., AutoHotkey).
  2. For example, you can enter the following code into Notepad. In the example, the code writes "Hello World!" any time the Windows key+Q is pressed on the keyboard.
; Example keyboard shortcut
#q::
Send, Hello World!
return
  1. Once the above code is added to your script or other code is added to your script.

Saving your first AutoHotkey.ahk script in Notepad

  1. This script, AutoHotkey.ahk, is located in your Documents folder. Open a new File Explorer window (keyboard: Windows key+E) and go to Documents.

AutoHotkey.ahk is located in your Documents folder

  1. Run the script by double-clicking the file. You won't see anything happen, but AutoHotkey is now running the script, and if you press Windows key+Q anywhere that accepts text, it writes "Hello World!" automatically.
AutoHotkey systray menu
Tip

When AutoHotkey is running, a green box with a white 'H' (AutoHotkey icon) is displayed in the Windows Notification Area. You can also right-click this icon to load the Windows Spy, Reload This Script, Edit This Script, Suspend Hotkeys, or Pause Script. To make changes to a script that is not already open, use the Edit This Script option to edit the running script. Also, make sure to choose the Reload This Script option after any changes are made to a script.

The example script above is a basic example of creating an AutoHotkey script. Almost anything that can be done on a computer with the keyboard or mouse can be automated using AutoHotkey. Further information and examples are found in the following links.