← All skills
Tencent SkillHub · Developer Tools

Windows Remote

Control remote Windows machines via SSH. Use when executing commands on Windows, checking GPU status (nvidia-smi), running scripts, or managing remote Windows systems. Triggers on "run on Windows", "execute on remote", "check GPU", "nvidia-smi", "远程执行", "Windows 命令".

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Control remote Windows machines via SSH. Use when executing commands on Windows, checking GPU status (nvidia-smi), running scripts, or managing remote Windows systems. Triggers on "run on Windows", "execute on remote", "check GPU", "nvidia-smi", "远程执行", "Windows 命令".

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/win-download.sh, scripts/win-exec.sh, scripts/win-gpu.sh, scripts/win-upload.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/win-download.sh Scripts
  • scripts/win-exec.sh Scripts
  • scripts/win-gpu.sh Scripts
  • scripts/win-upload.sh Scripts