opus-nt/run-online.bat

20 lines
487 B
Batchfile
Raw Permalink Normal View History

2022-06-22 05:30:34 +00:00
@echo off
setlocal
2022-06-22 05:30:34 +00:00
cd /d "%~dp0"
echo WARNING! This will apply opus-nt to your currently running OS.
2022-06-22 05:42:27 +00:00
echo On Windows 10, make sure to disable tamper protection.
2022-06-22 05:30:34 +00:00
pause
call "%pyexe%" run.py online
if not "%errorlevel%" == "0" goto error
call "%pyexe%" run.py online modpath=mods-trustedInstaller
if not "%errorlevel%" == "0" goto error
call "%pyexe%" run.py online modpath=mods-online
if not "%errorlevel%" == "0" goto error
goto exit
:error
echo An error occured.
goto exit
:exit
2022-06-22 05:30:34 +00:00
pause