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

  1. echo off
  2. cd intro
  3. SCRDISP TITLE
  4. SCRDISP JUL1
  5. :menu
  6. cd ..\intro
  7. SCRDISP JUL2
  8. if errorlevel 193 goto menu
  9. if errorlevel 192 goto F6
  10. if errorlevel 191 goto F5
  11. if errorlevel 190 goto F4
  12. if errorlevel 189 goto F3
  13. if errorlevel 188 goto F2
  14. if errorlevel 187 goto F1
  15. if errorlevel  28 goto menu
  16. :F1
  17. cd ..\
  18. cls
  19. echo To install Automenu on a hard disk, you first need to decompress the
  20. echo files onto a freshly formatted floppy disk. If you haven't one to hand,
  21. echo exit from this program now by pressing [Ctrl]C and answering Y to the prompt,
  22. echo and prepare them.
  23. echo.
  24. echo To start the installation, make sure that the SuperDisk is in drive A:
  25. echo and the fresh floppy, which you should label AUTOMENU MASTER, is in drive
  26. echo B:. 
  27. echo.
  28. echo On a single floppy machine, DOS should prompt you to swap the disk for
  29. echo A: (the SuperDisk) with the disk for B: (the Automenu master) during the
  30. echo decompression process. If you're prompted to 'insert disk with batch file',
  31. echo insert the SuperDisk before pressing any key.
  32. echo.
  33. echo Press [Ctrl]C and answer Y to the prompt, if you DO NOT want to start
  34. echo the installation. 
  35. echo.
  36. echo Press [Return] to start the installation.
  37. pause >NUL
  38. cd automenu
  39. automenu B:
  40. cls
  41. echo The disk labelled AUTOMENU MASTER, in your B: drive, now has the necessary
  42. echo files copied onto it. Exit from the SuperDisk menu to the A: prompt by
  43. echo pressing [F6], insert the AUTOMENU MASTER disk in drive A: and type INSTALL
  44. echo [Return] to install Automenu on your hard disk.
  45. echo.
  46. echo Press [Return] to return to the SuperDisk menu.
  47. pause >NUL
  48. goto menu
  49. :F2
  50. cd ..\utils
  51. DGEDIT DGEDIT.DOC
  52. goto menu
  53. :F3
  54. cd ..\games
  55. DROP
  56. goto menu
  57. :F4
  58. cd ..\utils
  59. cls
  60. echo The FileScan program will list all programs on the current drive which
  61. echo match a given file specification (eg *.DOC, GEMDOS.* or J*.*).
  62. echo.
  63. echo Press [Return] to run the program and list all the .DOC files on the
  64. echo SuperDisk.
  65. pause >NUL
  66. FS *.DOC
  67. goto menu
  68. :F5
  69. cd ..\shorties
  70. cls
  71. echo You're in the SHORTIES sub-directory, which contains a number of smaller
  72. echo utilities, some of which have separate documentation in files with a .DOC
  73. echo filetype. You can read these using the MS-DOS TYPE command.
  74. echo.
  75. echo Here's the directory listing...
  76. dir
  77. echo.
  78. echo Note that the files that make up the sound effects utility, ZAPPO,
  79. echo are held together in a further sub-directory. From the A: prompt, you
  80. echo can move to the ZAPPO directory with the command CD A:\SHORTIES\ZAPPO.
  81. pause
  82. cls
  83. echo Here are brief details of what they do - see PCPLUS for more:
  84. echo.
  85. echo EC     - takes an Elite Commander file and gives you 1.6 million credits.
  86. echo          If you can't reach Elite with that lot, perhaps you should be
  87. echo          playing a different game! Note that an Elite Commander file only
  88. echo          works if its Archive attribute is set OFF. EC does this for you
  89. echo          automatically, but if you subsequently copy the file to another
  90. echo          disk or sub-directory, the attribute will be set ON. You would
  91. echo          then have to set it off again with the MS-DOS ATTRIB -A FILENAME
  92. echo          command, where FILENAME is the name of the Commander file.
  93. echo.
  94. echo GEMDOS - provides a user-friendly shell from GEM to DOS, including the
  95. echo          use of parameters for a DOS command. Two versions are provided,
  96. echo          one for use from the GEMAPPS folder of a floppy in the A: drive,
  97. echo          the other for use from the GEMAPPS folder of hard drive C:.
  98. echo          Details in GEMDOS.DOC.
  99. echo.
  100. echo ZAPPO  - a pop-up sound effects program, which you can remove by resetting
  101. echo          your PC. There are three versions of the program, one for basic
  102. echo          XTs (XTZAPPO), one for turbo XTs like the Amstrad PCs (TXZAPPO)
  103. echo          and one for fast ATs and 386s (ATZAPPO). The only differences are
  104. echo          the pitch and duration of the sounds they produce.
  105. echo.
  106. echo TXZAPPO will be installed, with instructions, when you
  107. pause
  108. cd zappo
  109. txzappo
  110. echo.
  111. pause
  112. cd ..
  113. goto menu
  114. :F6
  115. cd ..\
  116. cls
  117. :end
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.