home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 9 / 1995-08_Disc_9.iso / sqcheck.bat < prev    next >
DOS Batch File  |  1995-03-16  |  665b  |  29 lines

  1. @echo off
  2. if not "%0"=="CheckCD" goto Abort
  3. if "%1"=="" goto Abort
  4.  
  5. echo Checking for Space Quest 6 demo CD in drive %1:
  6. if exist %1:sqcheck.bat goto Exit
  7. cls
  8. echo Please put the Space Quest 6 demo CD into your CD-ROM and then
  9. pause
  10.  
  11. :LoopCheck
  12. if exist %1:sqcheck.bat goto Exit
  13. echo.
  14. echo Unable to detect the Space Quest 6 demo 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 Space
  23. echo Quest 6 demo program. Please do not run it from the DOS
  24. echo command line.
  25. echo.
  26.  
  27. :Exit 
  28.  
  29.