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 dbgprint "Insert ReactOS boot medium and try again." 9 exit /b 0 10) 11 12xcopy /Y /H /E %DRIVE%:\AHK-Tests\*.* %SystemRoot%\bin 13REM Download Amine's rosautotest from svn 14dwnl http://svn.reactos.org/amine/rosautotest.exe %SystemRoot%\system32\rosautotest.exe 15dbgprint "....AHK Application testing suite added." 16