home *** CD-ROM | disk | FTP | other *** search
/ Software Buyer's Guide Volume 7 #1 / Software_Buyers_Guide_Volume_7_Number_1_SelectWare_Technologies_1995.iso / luc10003 / swtdemo.bat < prev   
DOS Batch File  |  1994-03-15  |  1KB  |  59 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo Welcome to Sam and Max Hit the Road.
  6. echo.
  7. echo  Choose one of the selections below:
  8. echo.
  9. echo     1. Run Sam and Max Hit the Road. (If problems try selection 2)
  10. echo           Located in directory %1:\LUC10003
  11. echo     2. Create a boot-disk, boot from the disk.
  12. echo     3. Print installation instructions.
  13. echo     4. Quit.
  14. echo.
  15. echo     Please enter the number for your choice;
  16. query
  17.  
  18. if errorlevel = 5 goto invalid
  19. if errorlevel = 4 goto end
  20. if errorlevel = 3 goto print
  21. if errorlevel = 2 goto reset
  22. if errorlevel = 1 goto run
  23.  
  24. :invalid
  25. cls
  26. echo Invalid option
  27. goto start
  28. goto end
  29.  
  30. REM Sam and Max    
  31. :run
  32. echo Loading Sam and Max 
  33. PLAYDEMO.EXE
  34. echo.
  35. goto end
  36.  
  37. REM Create boot disk
  38. :reset
  39. cls
  40. bootmkr.exe
  41. if errorlevel 1 goto start
  42. echo %1: >> a:\autoexec.bat
  43. echo cd \luc10003 >> a:\autoexec.bat
  44. echo playdemo.exe >> a:\autoexec.bat
  45. echo.
  46. cls
  47. echo Exit the demonstration system and boot from newly created disk.
  48. pause
  49. goto end
  50.  
  51. :print
  52. cls
  53. print readme.txt
  54. goto start
  55. goto end
  56.  
  57. :end
  58.  
  59.