home *** CD-ROM | disk | FTP | other *** search
/ CD Player 1994 January / CdPlayer94-01.iso / demos / krondemo / demo.bat < prev    next >
DOS Batch File  |  1993-08-09  |  662b  |  37 lines

  1. @echo off
  2. if "%xxp%"=="" goto Demo
  3. if "%getkey%"=="C" goto Config
  4. if "%getkey%"=="D" goto Demo
  5. goto End
  6.  
  7. :Demo
  8. if exist c:\sierra\democd\krondemo\krondor.exe goto KronDHD
  9.  
  10. :Config
  11. if exist c:\sierra\democd\krondemo\krondor.exe goto KronCHD
  12. echo.
  13. echo.
  14. echo This demo must be installed on the hard disk for proper operation.
  15. echo This will require approximately 2.3 mbytes of free space on C:.
  16. echo.
  17. echo Do you want to install the demo you your C: drive now?
  18. getkey YN
  19. cls
  20. if "%getkey%"=="N" goto End
  21.  
  22. Install
  23. goto Demo
  24.  
  25. :KronCHD
  26. C:
  27. cd \sierra\democd\krondemo
  28. install
  29.  
  30. :KronDHD
  31. c:
  32. cd \sierra\democd\krondemo
  33. krondor
  34. cls
  35.  
  36. :End
  37.