mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
12 lines
221 B
Batchfile
12 lines
221 B
Batchfile
@echo OFF
|
|
|
|
SET PATH=%PATH%;%WINDIR%\System32;%WINDIR%\System32\WindowsPowerShell\v1.0;
|
|
|
|
WHERE /q powershell
|
|
if %ERRORLEVEL% NEQ 0 (
|
|
.\scripts\install.bat
|
|
) else (
|
|
powershell ".\scripts\install.bat | tee output.log"
|
|
)
|
|
|