@echo off
chcp 65001 >nul 2>&1
title Cloudflare Anycast Speedtest Pro
cd /d "%~dp0"
cls

if not exist "%~dp0speedtest.ps1" (
    echo.
    echo ============================================================
    echo  [错误] 未找到 speedtest.ps1 文件！
    echo  请确保 speedtest.bat 和 speedtest.ps1 放在同一个文件夹下。
    echo ============================================================
    echo.
    pause
    exit /b 1
)

powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "Unblock-File -Path '%~dp0speedtest.ps1' -ErrorAction SilentlyContinue; & '%~dp0speedtest.ps1'"

if %errorlevel% neq 0 (
    echo.
    echo ============================================================
    echo  [提示] 脚本执行完毕或遇到中断。
    echo ============================================================
    pause
)
