check_process
Check if a Windows process is running using executable name or window title filters. Retrieve PID, CPU%, RAM, title, and command line for matching processes.
Instructions
Check if a process is running on the user's Windows machine — no screenshot. Filter by executable name fragment (e.g. "python", "ffmpeg") and/or window title (e.g. "RENDER VIDEO 02"). Returns PID, CPU%, RAM, title, command line, start time. Command lines are truncated to 120 chars unless full_command_line=true. Results are capped at 10 matches, windowed processes first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name_contains | No | Executable name fragment (case-insensitive) | |
| title_contains | No | Window title fragment (case-insensitive) | |
| full_command_line | No | true for full command line (default: truncated to 120 chars) |