home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Masterblend / cdsharewaremasterblend.iso / mail / doc-data / config.bat next >
DOS Batch File  |  1990-11-22  |  978b  |  33 lines

  1. ECHO OFF
  2. CLS
  3. IF /%1 == / GOTO ERROR
  4. IF %1 == A: GOTO FLOPPY
  5. IF %1 == a: GOTO FLOPPY
  6. IF %1 == B: GOTO FLOPPY
  7. IF %1 == b: GOTO FLOPPY
  8. IF %1 == C: GOTO HARD
  9. IF %1 == c: GOTO HARD
  10. IF %1 == D: GOTO HARD
  11. IF %1 == d: GOTO HARD
  12. IF %1 == E: GOTO HARD
  13. IF %1 == e: GOTO HARD
  14. GOTO ERROR
  15. :FLOPPY
  16. ECHO Insert bootup disk in %1 drive.
  17. PAUSE
  18. COPY %1\CONFIG.SYS + DDCONFIG.SYS %1\CONFIG.SYS
  19. GOTO END
  20. :HARD
  21. COPY %1\CONFIG.SYS + DDCONFIG.SYS %1\CONFIG.SYS
  22. GOTO END
  23. :ERROR
  24. ECHO If using a dual floppy system, insert your bootup disk in your other 
  25. ECHO floppy drive.  From the current drive, Type: CONFIG <destination drive>
  26. ECHO plus <Enter>.  The destination drive is your bootup disk drive.  If you 
  27. ECHO are using a hard drive simply type the letter of the drive such as C: or
  28. ECHO or D: as the destination drive.  After this is done you will need to
  29. ECHO reboot your system in order for your system to read the two new lines in
  30. ECHO your CONFIG.SYS file.
  31. :END
  32.  
  33.