@echo off chcp 65001 >nul setlocal cd /d "%~dp0" echo crypto_monitor 一键环境部署 ... powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0deploy\setup_env.ps1" %* set ERR=%ERRORLEVEL% if not "%ERR%"=="0" ( echo. echo 部署失败,退出码 %ERR% pause exit /b %ERR% ) echo. pause exit /b 0