home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 10 / bbd10new.zip / DOS.MDF < prev    next >
Text File  |  1987-05-15  |  4KB  |  140 lines

  1. ...............................................................................
  2. .Automenu DOS Menu Example
  3. .By Marshall W. Magee
  4. .Updated last on 05/15/87
  5. ...............................................................................
  6. %Automenu(tm) Simple DOS Menu
  7. .................................................
  8. *Check Disk
  9. ?Print information about disk
  10. >Enter Drive you wish to do a Check Disk of:
  11. >       For Example: Enter 'A:' to check drive A:
  12. >
  13. <
  14. >
  15. >Now performing a check disk of drive -> %1
  16. =CHKDSK %1
  17. .................................................
  18. *Print Directory to Screen
  19. ?List filenames on disk
  20. >Select Directory you wish to see the Directory of:
  21. <A:,C:,D:
  22. >
  23. >Select directory command option:
  24. >
  25. >       /W      This option prints filenames across screen
  26. >       /P      This option will pause when screen fills
  27. >       /W/P    This option is a combination of the above two options
  28. >
  29. </W,/P,/W/P
  30. >
  31. >Now listing files on drive -> %1 with option -> %2
  32. =DIR %1%2
  33. .................................................
  34. *Execute any DOS Command
  35. >Enter any valid DOS Command and Press Return (ESC to return to Menu)
  36. <
  37. >...Now Executing >> %1
  38. =%1
  39. .................................................
  40. *Choose a DOS Command
  41. >Select any of the DOS Commands below and Press Return (ESC to return to Menu)
  42. >
  43. <DIR,dir A:,CHKDSK,CHKDSK/F,VER,SET,TIME,DATE
  44. >
  45. >...Now Executing >> %1
  46. =%1
  47. .................................................
  48. *Return to Main Menu
  49. ?Will return to Main Menu
  50. @automenu.MDF
  51. .................................................
  52. %Common DOS Functions
  53. .................................................
  54. *Copy a file to another disk drive
  55. ?Copy a file
  56. >Enter filename to be copied  (Press ESC to Quit)
  57. >       For Example:    TEST.DAT
  58. >                       C:SAM.*
  59. <
  60. >Select which drive to copy it to:
  61. <A:\,B:,C:,D:,A:\PUBLIC
  62. >
  63. >Now coping file %1 to %2
  64. -COPY %1 %2
  65. .................................................
  66. *Move a file to another disk drive
  67. ?Move a file or files
  68. >This option will copy the files to a new location and erase old files
  69. >
  70. >
  71. >
  72. >Enter filename to be moved  (Press ESC to Quit)
  73. >       For Example:    TEST.DAT  or C:TEST.DAT
  74. >
  75. <
  76. >Select which drive to move it to:
  77. <A:\,B:,C:,D:,A:\PUBLIC
  78. >
  79. >Now moving file %1 to %2
  80. !COPY %1 %2
  81. !ERASE %1
  82. .................................................
  83. *Erase a file
  84. ?Erase a file (Password = OK)
  85. ^OK
  86. >Enter filename to be erased  (Press ESC to Quit)
  87. >       For Example:    TEST.DAT  or C:TEST.DAT
  88. >
  89. <
  90. -ERASE %1
  91. .................................................
  92. *Rename a file
  93. >Enter old filename to be renamed  (Press ESC to Quit)
  94. >       For Example:    TEST.DAT  or D:TEST.DAT
  95. >
  96. <
  97. >Enter new filename, without drive specified.
  98. >
  99. <
  100. -REN %1 %2
  101. .................................................
  102. *Format a data diskette in B:
  103. ^BOB
  104. ?Format disk in Drive B: using "FORMAT B:"
  105. .FORMAT B:
  106. =ECHO FORMAT Example is disabled, Modify DOS.MDF to Activate
  107. .................................................
  108. *Format diskette in B: with system on it
  109. ?Format disk in Drive B: using "FORMAT B:/S/V"
  110. ^BOB
  111. .FORMAT B:/S/V
  112. =ECHO FORMAT Example is disabled, Modify DOS.MDF to Activate
  113. .................................................
  114. *Return to Main Menu
  115. ?Will return to Main Menu
  116. @automenu.MDF
  117. .................................................
  118. %Backup Menu
  119. .................................................
  120. *Prepare diskette in A: to be used for backup
  121. +ECHO   Enter Ctrl-Break & "Y" to STOP format
  122. +PAUSE
  123. +ECHO FORMAT Example is disabled, Modify DOS.MDF to Activate
  124. .FORMAT A:
  125. +AUTO
  126. .................................................
  127. *Total Backup of Drive C:
  128. +BACKUP C:\ A:/S
  129. +AUTO
  130. .................................................
  131. *Update backup for files changed on Drive C:
  132. +BACKUP C:\ A:/S/M
  133. +AUTO
  134. .................................................
  135. *Return to Main Menu
  136. ?Will return to Main Menu
  137. @automenu.MDF
  138. .................................................
  139. #END OF DOS.MDF
  140.