winops_process_info
Retrieve detailed information for a Windows process by PID, including status, CPU, memory, threads, and command line. Resolves missing processes with a clear error response.
Instructions
Get detailed information for a single process by PID.
Return Format
{
"success": bool,
"pid": int, "name": str, "status": str, "started": str,
"cmdline": [str], "cpu_percent": float, "memory_info": {...}, "num_threads": int
}Examples
info(pid=1234)Errors:
Returns success=false with error="Process not found" if PID does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | Yes | Process ID to inspect. |