home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / editors / edit11a.arj / RUN.BAT < prev   
DOS Batch File  |  1991-07-25  |  916b  |  26 lines

  1. * IMPORTANT ! Change this batch file to suit YOUR system *
  2. * Delete ALL comments before attempting to run this file *
  3. * Note: EDIT11 can be run without a batch file           *
  4.  
  5. @echo off
  6. c:         <----------------------- Use drive letter where the
  7.                                     config.sys and autoexec.bat files
  8.                                     are located.
  9. if exist autoexec.old goto auto
  10. if exist config.old goto config
  11.  
  12. :auto
  13. copy autoexec.old autoexec.edt  <--- Will save OLD file as EDT
  14. del autoexec.old
  15.  
  16. :config
  17. copy config.old config.edt      <--- Will save OLD file as EDT
  18. del config.old
  19.  
  20. a:                              <--- Change to drive where the EDIT
  21.                                      program is located. Remember to
  22.                                      change directory if necessary
  23. edit11
  24.  
  25. *Delete all comments preceded by arrows or asterisks before running *
  26.