top of page
Copy .Gau Files To Condor 3 Planes Folders

This is a little DOS Batch File Utility I whipped up (John Blyth cupxtools@gmail.com) to make it easy to re-copy your modified .gau files back to Condor 3 after an update. They may have been overwritten if the glider's .gau file has been refreshed by the Condor 3 update. A copy of the original Condor3 .gau file will be automatically generated with the name GliderName_Date_Time.gau in case you wish to revert to the standard version.​

​

Here's the code for you, otherwise just download the zipped file linked below. The zipped file also contains my .gau files for the JS3-15/18 and AS33Me, which adds an Artificial Horizon and the separate Hawk dual wind gauges. The V8 and S10 gauges are enlarged and projected towards the pilot for easier reading, particularly in VR.

Read the REMed lines below for how to use:-

@echo off
REM  By John Blyth cupxtools@gmail.com (Updated 07/06/25 - Thanks Ryan Wood for improving the date style fix!)
REM  Place this batch file in the same folder that all your modified .gau files reside in. 
REM  Run it after each Condor 3 update to restore your modified .gau files 
REM  The standard .gau file will be saved with the current date and time added 
REM  Modify the next line ONLY if your Condor 3 installation is NOT in the C:\Condor3 Folder 
set CondorLocation=C:\Condor3

@echo off
for /f "delims=" %%a in ('wmic OS Get localdatetime  ^| find "."') do set dt=%%a
set dt=%dt:~0,4%-%dt:~4,2%-%dt:~6,2%_%dt:~8,2%-%dt:~10,2%-%dt:~12,2%

set /a count = 0
for %%f in (*.gau) do (
if exist "%CondorLocation%\Planes\%%~nf\%%f" ren "%CondorLocation%\Planes\%%~nf\%%f" "%%~nf_%dt%%%~xf"
xcopy "%%f" "%CondorLocation%\Planes\%%~nf\%%f" /-I /F /Y
set /a count += 1
)
echo.
echo %count% .gau files were copied to your %CondorLocation% folders
echo.
pause
:End

Send me a message and I’ll get back to you shortly, or email me directly at CupXTools @gmail.com

Thanks for submitting!

©2022 by CupX Tools. Proudly created with Wix.com

bottom of page