home *** CD-ROM | disk | FTP | other *** search
/ Hoog Spel 50 / Hoogspel50CDROM.iso / INSTALL / L7CHECK.BAT < prev    next >
DOS Batch File  |  1996-07-08  |  630b  |  29 lines

  1. @echo off
  2. if not "%0"=="CheckCD" goto Abort
  3. if "%1"=="" goto Abort
  4.  
  5. echo Checking for Larry 7 CD in drive %1:
  6. if exist %1:\install\l7check.bat goto Exit
  7. cls
  8. echo Please put the Larry 7 CD into your CD-ROM and then
  9. pause
  10.  
  11. :LoopCheck
  12. if exist %1:l7check.bat goto Exit
  13. echo.
  14. echo Unable to detect the Larry 7 CD in drive %1:.
  15. echo You may abort this looping test by pressing Ctrl-C or
  16. echo insert the CD into your CD-ROM and then
  17. pause
  18. goto LoopCheck
  19.  
  20. :Abort
  21. echo.
  22. echo This batch file is used automatically by the Larry
  23. echo 7 program. Please do not run it from the DOS
  24. echo command line.
  25. echo.
  26.  
  27. :Exit 
  28.  
  29.