Answers for "check if an app is running ahk"

0

check if an app is running ahk

^h::
Process, Exist, notepad.exe
If ErrorLevel = 0
{
MsgBox, Notepad does not exist.
}
Else
{
MsgBox, Notepad is running.
}
Return
Posted by: Guest on November-08-2020

Code answers related to "check if an app is running ahk"

Browse Popular Code Answers by Language