# Send Windows Remote to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "windows-remote",
    "name": "Windows Remote",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xiaoyaner0201/windows-remote",
    "canonicalUrl": "https://clawhub.ai/xiaoyaner0201/windows-remote",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/windows-remote",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows-remote",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/win-download.sh",
      "scripts/win-exec.sh",
      "scripts/win-gpu.sh",
      "scripts/win-upload.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "windows-remote",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T02:42:54.449Z",
      "expiresAt": "2026-05-18T02:42:54.449Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows-remote",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows-remote",
        "contentDisposition": "attachment; filename=\"windows-remote-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "windows-remote"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/windows-remote"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/windows-remote",
    "downloadUrl": "https://openagent3.xyz/downloads/windows-remote",
    "agentUrl": "https://openagent3.xyz/skills/windows-remote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/windows-remote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/windows-remote/agent.md"
  }
}
```
## Documentation

### Windows Remote Control

Execute commands on remote Windows machines via SSH.

### Configuration

Set environment variables in ~/.openclaw/openclaw.json under skills.windows-remote.env:

{
  "skills": {
    "windows-remote": {
      "env": {
        "WINDOWS_SSH_HOST": "192.168.1.100",
        "WINDOWS_SSH_PORT": "22",
        "WINDOWS_SSH_USER": "Administrator"
      }
    }
  }
}

Or export directly:

export WINDOWS_SSH_HOST="192.168.1.100"
export WINDOWS_SSH_PORT="22"
export WINDOWS_SSH_USER="Administrator"

### Check Connection

scripts/win-exec.sh "echo connected"

### GPU Status

scripts/win-exec.sh "nvidia-smi"

### Run PowerShell

scripts/win-exec.sh "powershell -Command 'Get-Process | Select-Object -First 10'"

### Execute Script

scripts/win-exec.sh "python C:\\\\path\\\\to\\\\script.py"

### win-exec.sh

Execute a single command on the remote Windows machine.

scripts/win-exec.sh "<command>"

### win-gpu.sh

Quick GPU status check (nvidia-smi wrapper).

scripts/win-gpu.sh
scripts/win-gpu.sh --query  # Compact output

### win-upload.sh

Upload files to the remote machine via SCP.

scripts/win-upload.sh <local-file> <remote-path>

### win-download.sh

Download files from the remote machine.

scripts/win-download.sh <remote-path> <local-file>

### Check if Ollama is Running

scripts/win-exec.sh "tasklist | findstr ollama"

### Start a Service

scripts/win-exec.sh "net start <service-name>"

### Run Python with GPU

scripts/win-exec.sh "python -c \\"import torch; print(torch.cuda.is_available())\\""

### Check Disk Space

scripts/win-exec.sh "wmic logicaldisk get size,freespace,caption"

### Troubleshooting

IssueSolutionConnection refusedCheck SSH service: Get-Service sshdPermission deniedVerify SSH key in ~/.ssh/authorized_keys or administrators_authorized_keysTimeoutCheck firewall rules, verify IP/portCommand not foundUse full path or check PATH on Windows

### Security Notes

Use SSH keys instead of passwords
Keep private keys secure (chmod 600)
Consider using Tailscale for cross-network access
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xiaoyaner0201
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T02:42:54.449Z
- Expires at: 2026-05-18T02:42:54.449Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/windows-remote)
- [Send to Agent page](https://openagent3.xyz/skills/windows-remote/agent)
- [JSON manifest](https://openagent3.xyz/skills/windows-remote/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/windows-remote/agent.md)
- [Download page](https://openagent3.xyz/downloads/windows-remote)