I have a script running in AutoHotkey called BasicTools.ahk
; it is process that runs under autohotkey.exe
. When I run Get-Process
it only shows me instances of Autohotkey
so I have no way to isolate the specific process running my script (all I see from Get-Process
is multiple Autohotkey
processes). I saw answers like this, but they are not usable for this specific situation.
How can I stop a specific script (from PowerShell) that is running under Autohotkey
, knowing the name of the script (in this case BasicTools.ahk
)?