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

  1. echo off
  2. cd intro
  3. SHOWCSF TITLE
  4. SHOWCSF SEP1
  5. :menu
  6. cd ..\intro
  7. SHOWCSF SEP2
  8. ..\shorties\hilite 8 9 15 5
  9. if errorlevel 6 goto menu
  10. if errorlevel 5 goto F5
  11. if errorlevel 4 goto F4
  12. if errorlevel 3 goto F3
  13. if errorlevel 2 goto F2
  14. if errorlevel 1 goto F1
  15. if errorlevel 0 goto menu
  16. :F1
  17. cd ..\dosmate
  18. cls
  19. echo DOSmate Plus is an on-line, memory-resident help system for DOS. It will
  20. echo provide help on just about any DOS command, including those in MS/PC-DOS
  21. echo 4.0 and higher. It will now be installed - once this has been done, press
  22. echo [Alt][Tab] to call it up, [Esc] to return to this screen and then any key
  23. echo to go back to the PC PLUS menu.
  24. echo.
  25. pause
  26. dmplus
  27. pause
  28. goto menu
  29. :F2
  30. cd ..\fileman
  31. cls
  32. echo File Manager handles your everyday DOS commands in an easy menu-driven wa
  33. echo With it, you can move easily from one directory to another, flag any numb
  34. echo of files for copying or deleting and display the tree structure and the
  35. echo contents of text files. Leave the program by pressing [Esc].
  36. echo.
  37. pause
  38. fm
  39. goto menu
  40. :F3
  41. cd ..\utils
  42. cls
  43. echo MOUSEMAN is short for Mouse Manager. This useful utility can be called fr
  44. echo a batch file to provide full mouse control. Instructions can be found in
  45. echo PC PLUS and in the MOUSEMAN.DOC file in the UTILS sub-directory. To show
  46. echo kind of things MOUSEMAN can do, there's also a short demo file, MMTEST,
  47. echo which can be run by typing the CD UTILS [Return] from the A-prompt,
  48. echo followed by MMTEST.
  49. echo.
  50. pause
  51. goto menu
  52. :F4
  53. cd ..\shorties
  54. cls
  55. echo You're in the SHORTIES sub-directory.
  56. echo.
  57. echo This contains a number of smaller utilities, further details of which are
  58. echo in the SuperDisk section of PC PLUS. Some may have documentation in .DOC
  59. echo files, which you can read using the MS-DOS TYPE command.
  60. echo.
  61. echo Here's the directory listing...
  62. dir
  63. echo.
  64. pause
  65. cls
  66. echo Here are brief details of what they do - see PCPLUS for more:
  67. echo.
  68. echo PRNSTATE - returns a value in the variable ERRORLEVEL corresponding to th
  69. echo            current status of the printer connected to your PC.
  70. echo.
  71. echo ADDPATH  - Adds one or more directory names to the current PATH setting o
  72. echo            your machine, without having to retype the whole PATH.
  73. echo.
  74. echo HILITE   - Provides a highlighted menu bar for selection of options from
  75. echo            a menu. Ideal for use in batch files, such as this one.
  76. echo.
  77. echo Now to see each one in action. First, let's see what your printer's up to
  78. echo.
  79. prnstate /r
  80. echo.
  81. pause
  82. cls
  83. echo Let's also add the sub-directory SHORTIES to your current path, so you ca
  84. echo call either shortie from the A-prompt. Don't worry if your PC reports
  85. echo 'Out of environment space', but read the ADDPATH.DOC file for more info.
  86. echo.
  87. call addpath a:\shorties
  88. echo.
  89. echo Study the PCPLUS.BAT file for examples of the use of these three utilitie
  90. echo.
  91. pause
  92. cls
  93. echo The HILITE routine is used within this batch file itself. The best way to
  94. echo show it off is to return to the main SuperDisk menu. So,
  95. echo.
  96. pause
  97. goto menu
  98. :F5
  99. cd ..\
  100. cls
  101. :end
  102.