Initial commit: OpenClaw 龙虾AI 一键部署脚本

This commit is contained in:
Rick Mu
2026-02-13 13:31:07 +11:00
commit 11e8a6b66c
6 changed files with 662 additions and 0 deletions

33
uninstall-windows.ps1 Normal file
View File

@@ -0,0 +1,33 @@
# ─────────────────────────────────────────────
# OpenClaw 卸载脚本 (Windows / WSL)
# ─────────────────────────────────────────────
$ErrorActionPreference = "Stop"
function Write-Info($msg) { Write-Host "[信息] $msg" -ForegroundColor Cyan }
function Write-Ok($msg) { Write-Host "[完成] $msg" -ForegroundColor Green }
function Write-Warn($msg) { Write-Host "[警告] $msg" -ForegroundColor Yellow }
Write-Host ""
Write-Host "========================================" -ForegroundColor White
Write-Host " OpenClaw 卸载器 (Windows)" -ForegroundColor White
Write-Host "========================================" -ForegroundColor White
Write-Host ""
$uninstallScript = @'
set -e
export PATH="$HOME/.openclaw/bin:$PATH"
if command -v openclaw &>/dev/null; then
echo "[信息] 已找到 openclaw正在运行卸载..."
openclaw uninstall --all --yes --non-interactive
else
echo "[警告] 在 PATH 中未找到 openclaw使用 npx..."
npx -y openclaw uninstall --all --yes --non-interactive
fi
'@
Write-Info "正在卸载 WSL 中的 OpenClaw..."
wsl -d Ubuntu-24.04 -- bash -c $uninstallScript
Write-Ok "OpenClaw 已卸载。"
Write-Host ""