winops_svc_list
List Windows services with optional filtering by status (running, stopped, or all) and include/exclude system services. Provides service names, display names, and current statuses.
Instructions
List Windows services, optionally filtered by status.
Return Format
{"success": true, "services": [{"name": str, "display_name": str, "status": str}], "count": int}Examples
list(filter_status="running")
list(include_system=False)Errors:
Returns success=false if pywin32 is not installed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter_status | No | Filter by status: running, stopped, or all. | |
| include_system | No | Include Windows system services. |