home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 37 / PCPLUS.BAT
Encoding:
DOS Batch File  |  1989-01-01  |  2.5 KB  |  101 lines

  1. echo off
  2. cd intro
  3. SHOWCSF TITLE
  4. SHOWCSF OCT1
  5. :menu
  6. cd ..\intro
  7. SHOWCSF OCT2
  8. if errorlevel 194 goto menu
  9. if errorlevel 193 goto F7
  10. if errorlevel 192 goto F6
  11. if errorlevel 191 goto F5
  12. if errorlevel 190 goto F4
  13. if errorlevel 189 goto F3
  14. if errorlevel 188 goto F2
  15. if errorlevel 187 goto F1
  16. if errorlevel  28 goto menu
  17. :F1
  18. cls
  19. echo COPY AND EXPAND PORTEX FILES TO DRIVE B:
  20. echo.
  21. echo Put a freshly formatted disk in drive B: and press any key to
  22. echo start. If you have not already prepared a fresh disk, or do
  23. echo NOT want to copy and expand the files now, press [Ctrl][C]
  24. echo and answer [Y] to return to DOS. Otherwise,
  25. pause
  26. cls
  27. cd ..\portex
  28. portex b:
  29. echo.
  30. echo Assuming no errors have been reported, the Portex files have
  31. echo been successfully transferred to drive B:.
  32. pause
  33. goto menu
  34. :F2
  35. cls
  36. echo COPY AND EXPAND FILES TO HARD DRIVE C:
  37. echo.
  38. echo A new sub-directory, PORTEX, will be created on drive C: and
  39. echo the Portex files will be copied there. If you do NOT want to
  40. echo copy and expand the files now, press [Ctrl][C] and answer [Y]
  41. echo to return to DOS. Otherwise,
  42. pause
  43. cls
  44. c:
  45. cd\
  46. md portex
  47. a:
  48. cd ..\portex
  49. portex c:\portex
  50. echo.
  51. echo Assuming no errors have been reported, the Portex files have
  52. echo been successfully transferred to C:\PORTEX.
  53. pause
  54. goto menu
  55. :F3
  56. cd ..\games
  57. desert
  58. goto menu
  59. :F4
  60. cd ..\utils
  61. cardfile test.crd
  62. goto menu
  63. :F5
  64. cd ..\utils
  65. flopsee
  66. goto menu
  67. :F6
  68. cd ..\shorties
  69. cls
  70. echo You're in the SHORTIES sub-directory.
  71. echo.
  72. echo This contains a number of smaller utilities, further details of which
  73. echo are in the SuperDisk section of the magazine. Some may have
  74. echo documentation in .DOC files, which you can read using the MS-DOS TYPE
  75. echo command.
  76. echo.
  77. echo Here's the directory listing...
  78. dir
  79. echo.
  80. pause
  81. cls
  82. echo Here are brief details of what they do - see PCPLUS for more:
  83. echo.
  84. echo CASSBOX  - This is a text file which produces a label suitable for an
  85. echo            audio cassette-box, when printed. Read the .DOC file for more
  86. echo            file for more details. You'll need an Epson-type printer.
  87. echo.
  88. echo FADE     - This is a novelty screen-fade routine to add visual spice to
  89. echo            your batch files. More details in the .DOC file.
  90. echo.
  91. echo MENULINE - Another one for batch file enthusiasts. This one produces a
  92. echo            status display line on the screen. Again, check the .DOC file.
  93. echo.
  94. pause
  95. fade 1
  96. goto menu
  97. :F7
  98. cd ..\
  99. cls
  100. :end
  101.