@echo off REM ============================================================================ REM RUN THIS AFTER EXTRACTING A NEW BT411 BUILD. REM It finds the newest BT411_* folder under C:\bt411 and pushes the cab's REM frozen rig config into it (environ.ini block + glass_layout.cfg). REM Without it a fresh extract comes up with the MFDs wrong and no error. REM ============================================================================ setlocal set ROOT=C:\bt411 set INSTALL= for /f "delims=" %%d in ('dir /b /ad /o-d "%ROOT%\BT411_*" 2^>nul') do ( if not defined INSTALL set INSTALL=%ROOT%\%%d ) if not defined INSTALL goto noinstall echo Newest install: %INSTALL% powershell -NoProfile -ExecutionPolicy Bypass -File "%ROOT%\podkit.ps1" -Content "%INSTALL%\content" echo. echo Done. play_solo.bat / join.bat / play_steam.bat in that folder will now echo all come up on the pod glass -- they inherit it from environ.ini. pause exit /b :noinstall echo No BT411_* folder found under %ROOT%. Extract the zip there first. pause