@echo off REM Maintained in package SubversionServerSupport REM REM Update the VisualSVN-Replication.ini in all the repositories REM for /D %%R in ( e:\Repositories\* ) do call :UpdateOne %%R goto end :UpdateOne if exist %1\conf\VisualSVN-Replication.ini goto UpdateOne.1 echo *Skipping %1 goto end :UpdateOne.1 echo Updating %1 copy e:\Repositories\VisualSVN-Replication.ini %1\conf >nul :end