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 / luc10001 / swtdemo.bat < prev    next >
DOS Batch File  |  1994-03-15  |  948b  |  52 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo                 Welcome to Rebel Assault.
  6. echo.  
  7. echo          Select an option:
  8. echo.
  9. echo  1. Run Rebel Assault. (If problems try option 2.) 
  10. echo       Located in %1:\LUC10001.
  11. echo  2. Create a boot-disk, then reboot, this will run Rebel Assault. 
  12. echo  3. Quit.
  13. echo.
  14. echo              Please enter the number for your choice;
  15. query
  16.  
  17. if errorlevel = 4 goto invalid
  18. if errorlevel = 3 goto end
  19. if errorlevel = 2 goto reset
  20. if errorlevel = 1 goto run
  21.  
  22. :invalid
  23. cls
  24. echo Invalid option
  25. goto start
  26. goto end
  27.  
  28. REM Rebel Assault    
  29. :run
  30. cls
  31. echo Loading Rebel Assault
  32. rebel.exe
  33. goto end
  34.  
  35. REM Create boot disk
  36. :reset
  37. cls
  38. bootmkr.exe
  39. if errorlevel 1 goto start
  40. echo %1: >> a:\autoexec.bat
  41. echo cd \luc10001 >> a:\autoexec.bat
  42. echo rebel.exe >> a:\autoexec.bat
  43. cls
  44. echo.
  45. echo  Exit the demonstration system and boot off created disk to run demo.
  46. pause
  47. goto end
  48.  
  49. :end
  50.  
  51.  
  52.