home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / lot10040 / go.bat < prev    next >
DOS Batch File  |  1990-02-20  |  1KB  |  60 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. echo .
  6. echo     The Lotus Magellan demo can be run interactively,
  7. echo     or you can make a copy to take home.
  8. echo .
  9. echo     Please choose one of the selections below:
  10. echo .
  11. echo     1. Interactive demo
  12. echo     2. Copy the demo to drive A: (you must have a formatted diskette)
  13. echo     3. Quit
  14. echo .
  15. echo     Please enter the number for your choice:
  16. query
  17.  
  18. if errorlevel = 3 goto exit
  19. if errorlevel = 2 goto copydemo
  20. if errorlevel = 1 goto inter
  21.  
  22. goto end
  23.  
  24. REM run interactive demo
  25. :inter
  26. echo Loading interactive demo
  27. DEMO
  28. goto end
  29.  
  30. REM copy demo to A:
  31. :copydemo
  32. echo .
  33. echo .
  34. echo    YOU MUST HAVE A BLANK, 1.2MB FLOPPY TO COPY THIS DEMO
  35. echo .
  36. echo      Please insert the blank, formatted floppy in drive A:
  37. echo      Or press Ctrl-C to quit.
  38. echo .
  39. pause
  40. REM copy all files for the demo.  This also copies subdirs
  41. xcopy *.* a:\  /s
  42. echo .
  43. goto :end
  44.  
  45. :exit
  46. echo .
  47. echo returning to The SelectWare System
  48. exit
  49.  
  50.  
  51.  
  52. :end
  53. echo .
  54. echo Type GO [Enter] to display the menu again, or
  55. echo type EXIT [Enter] to return to The SelectWare System.
  56. echo .
  57. echo on
  58.  
  59. :finish
  60.