activate_window
Brings a specified window to the foreground and makes it active using partial or full title matching for Windows automation tasks.
Instructions
激活指定窗口(通过标题)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | 窗口标题(支持部分匹配) |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "窗口标题(支持部分匹配)",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}