Yesterday while debugging my AutoHotkey script, I accidentally triggered an endless loop of MouseMove and MouseClick events. Every 0.5 seconds my mouse
MouseMove
MouseClick
If you want to get fancy and stop it from the Windows command prompt,
Stop all autohotkey scripts with:
taskkill /im "autohotkey.exe"
Stop specific script with:
wmic process where "commandline like '%%MyScript.ahk'" delete