diff --git a/install.bat b/install.bat index f9faab85..8aee2935 100644 --- a/install.bat +++ b/install.bat @@ -1,2 +1,9 @@ @echo OFF -powershell ".\scripts\install.bat | tee output.log" \ No newline at end of file + +WHERE /q powershell +if %ERRORLEVEL% NEQ 0 ( + .\scripts\install.bat +) else ( + powershell ".\scripts\install.bat | tee output.log" +) +