Checks if a process exists.
The name of the process to check (e.g., 'notepad.exe').
True if the process exists, false otherwise.
import { ProcessExists } from '@ahmic/autoit-js';const exists = ProcessExists('notepad.exe');console.log(exists); // Output: true Copy
import { ProcessExists } from '@ahmic/autoit-js';const exists = ProcessExists('notepad.exe');console.log(exists); // Output: true
https://www.autoitscript.com/autoit3/docs/functions/ProcessExists.htm
Checks if a process exists.