get_system_info
Retrieve system information from Windows computers using PowerShell, including hardware details, OS configuration, and system properties for enterprise management and monitoring.
Instructions
Get system information.
Args:
properties: List of ComputerInfo properties to retrieve (optional)
timeout: Command timeout in seconds (1-300, default 60)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| properties | No | ||
| timeout | No |
Input Schema (JSON Schema)
{
"properties": {
"properties": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Properties"
},
"timeout": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 60,
"title": "Timeout"
}
},
"type": "object"
}