start.bat 225 B

123456789
  1. @echo off
  2. chcp 65001 >nul
  3. echo 正在使用 PowerShell 执行 start.ps1...
  4. powershell.exe -ExecutionPolicy Bypass -File "%~dp0start.ps1"
  5. if %ERRORLEVEL% NEQ 0 (
  6. echo 执行失败,错误代码: %ERRORLEVEL%
  7. pause
  8. )