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 / war10003 / swtdemo.bat < prev    next >
DOS Batch File  |  1995-04-19  |  748b  |  53 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo               Welcome to Return to RingWorld.
  6. echo.
  7. echo     Choose one of the selections below:
  8. echo.
  9. echo     1. Install Return to RingWorld.
  10. echo     2. Run RingWorld from default C:\R2RW
  11. echo     3. View Readme File.
  12. echo     4. Quit.
  13. echo.
  14. echo     Please enter choice:
  15. query
  16.  
  17. if errorlevel = 5 goto invalid
  18. if errorlevel = 4 goto end
  19. if errorlevel = 3 goto read
  20. if errorlevel = 2 goto run
  21. if errorlevel = 1 goto install
  22.  
  23. :invalid
  24. cls
  25. echo Invalid option
  26. goto start
  27. goto end
  28.  
  29. REM Ring World    
  30. :install
  31. INSTALL.EXE
  32. goto start
  33.  
  34.  
  35. REM RUN 
  36. :run
  37. c:
  38. cd \r2rw 
  39. r2rw.exe
  40. goto end
  41.  
  42. REM Create boot disk
  43. :reset
  44. goto end
  45.  
  46. :read
  47. cls
  48. readme.exe readme
  49. goto start
  50.  
  51. :end
  52.  
  53.