install.cmd 205 B

12345678910
  1. @echo off
  2. setlocal
  3. powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0install.ps1"
  4. if errorlevel 1 (
  5. echo.
  6. echo Installation failed. See the error above.
  7. pause
  8. exit /b 1
  9. )
  10. exit /b 0