rem Batch file to put hook scripts in all repositories @echo off echo Updating all repositories with hook scripts >> d:\UpdateAll.log for /D %%f in (D:\SVNDATA\repositories\*.*) do if exist %%f\hooks\nul echo %%f\hooks >> d:\UpdateAll.log for /D %%f in (D:\SVNDATA\repositories\*.*) do if exist %%f\hooks\nul copy d:\svnscripts\pre-revprop-change.bat %%f\hooks\ echo Finished Updating hook scripts >> d:\UpdateAll.log :end