6 lines
237 B
Batchfile
6 lines
237 B
Batchfile
@echo off
|
|
setlocal
|
|
where pwsh.exe >nul 2>nul
|
|
if %errorlevel% equ 0 (pwsh.exe -NoProfile -File "%~dp0scripts\runtime\check-bell.ps1" %*) else (powershell.exe -NoProfile -File "%~dp0scripts\runtime\check-bell.ps1" %*)
|
|
exit /b %errorlevel%
|