1@ECHO OFF 2 3set DRIVE= 4for %%X in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (if exist %%X:\AHK-Tests set DRIVE=%%X) 5 6if not defined DRIVE ( 7 dbgprint "AHK Application testing suite not present, skipping." 8 exit /b 0 9) 10 11xcopy /Y /H /E %DRIVE%:\AHK-Tests\*.* %SystemRoot%\bin 12REM Download Amine's rosautotest from svn 13dwnl http://svn.reactos.org/amine/rosautotest.exe %SystemRoot%\system32\rosautotest.exe 14dbgprint "....AHK Application testing suite added." 15