start.bat 207 B

12345678910
  1. @echo off
  2. chcp 65001 >nul
  3. cd /d "%~dp0"
  4. powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0start.ps1" %*
  5. if errorlevel 1 (
  6. echo.
  7. echo Start failed. See errors above.
  8. pause
  9. exit /b 1
  10. )