home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 1995 June / pcw-0695.iso / dosmenu.bat next >
Encoding:
DOS Batch File  |  1995-04-12  |  1.2 KB  |  84 lines

  1. @echo off
  2.  
  3. :start
  4.  
  5. cls
  6. echo                         PCW INTERACTIVE - QUICK DOS MENU
  7. echo"
  8. echo"
  9. echo This Dos menu system is here for readers who don't have (or don't use) Windows.
  10. echo It is  also needed  for some  games that  refuse to  run correctly  from within
  11. echo Windows.
  12. echo"
  13. echo"
  14. echo"
  15. echo"
  16. echo"
  17. echo"
  18. echo"
  19. echo"
  20. echo"
  21. echo"
  22. echo"
  23. echo"
  24. echo"
  25. echo"
  26. echo"
  27. echo Use the cursor keys and Return to select and run an option, or press Escape to
  28. echo return to Dos.  Please don't  try to  run this batch  file from  Windows as it
  29. echo          defeats the whole object and won't work properly anyway.
  30.  
  31. :menu1
  32.  
  33. \system\getopt "Select an option:" Hell "Inside Information" Gallery "Print Partner" [Exit]
  34.  
  35. if errorlevel=5 goto exit
  36. if errorlevel=4 goto pp
  37. if errorlevel=3 goto gallery
  38. if errorlevel=2 goto inside
  39. if errorlevel=1 goto hell
  40.  
  41. goto exit
  42.  
  43. :pp
  44.  
  45. cls
  46. cd \share\utils\prntptnr
  47. pp
  48. cd \
  49. goto start
  50.  
  51. :gallery
  52.  
  53. cls
  54. cd \demos\3dstudio
  55. \system\picem *.gif
  56. cd \gallery\gif
  57. \system\picem *.gif
  58. cd \
  59. goto start
  60.  
  61. :inside
  62.  
  63. cls
  64. cd \demos\ins_inf
  65. inside
  66. cd \
  67. goto start
  68.  
  69. :hell
  70.  
  71. cls
  72. cd \demos\hell
  73. command /c hell.bat
  74. cd \
  75. goto start
  76.  
  77. :exit
  78.  
  79. cls
  80. echo Goodbye from PCWI...
  81. echo"
  82.  
  83. :exit2
  84.