axmol/tools/console/axmol.bat

14 lines
314 B
Batchfile
Raw Normal View History

2023-08-30 08:34:33 +08:00
@echo off
REM looking powershell core 7+
where pwsh 1>nul 2>nul
if %ERRORLEVEL% EQU 0 pwsh "%~dp0/axmol.ps1" %* && goto :eof
REM Looking system installed powershell 5.x
where powershell 1>nul 2>nul
if %ERRORLEVEL% EQU 0 powershell "%~dp0/axmol.ps1" %* && goto :eof
echo "powershell 5+ required" 1>&2
exit /b 1