Remote software installation via automated installer detection and GUI automation. Use when: user needs to install software packages (.exe/.msi) on Windows machines, automate Office/Adobe/Chrome installations, or handle unattended software deployment. NOT for: Linux/macOS installations, package manager installs (apt/yum/brew), or containerized deployments.
通过自动化检测和 GUI 控制实现 Windows 远程软件安装。
✅ 使用场景:
❌ 不使用:
安装桌面上的所有软件
→ 自动检测桌面所有安装包并依次安装
只安装 Office
→ 过滤并安装 Office 相关安装包(自动判断 32/64 位)
检查下载目录有什么安装包
→ 列出安装包但不安装
安装 C:\Users\桌面\setup.exe
→ 安装指定路径的安装包
json
{
success: true,
message: 远程安装流程完成,
summary: {
total_packages: 2,
successful_installs: 1,
failed_installs: 1,
results: [
{
package: C:\\Users\\...\\Office.exe,
success: true,
message: EXE 包安装成功
}
]
}
}
编辑 config.json 自定义:
json
{
installation: {
timeout_seconds: 300,
retry_attempts: 3,
log_level: INFO
},
ui_elements: {
nextbuttontexts: [下一步, Next, 继续, Install],
finishbuttontexts: [完成, Finish, Close]
}
}
bash
pip install pyautogui pywinauto Pillow
脚本会自动:
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 remote-install-1775968321 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 remote-install-1775968321 技能
skillhub install remote-install-1775968321
文件大小: 10.24 KB | 发布时间: 2026-4-13 11:47