home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 127.img / DDOS501.ZIP / 123DRIVE.BAT next >
DOS Batch File  |  1985-02-19  |  857b  |  39 lines

  1. cls
  2. rem        Installing DoubleDOS replacement display drivers for 1-2-3.
  3. echo off
  4. if %1z==z goto bad
  5. if %1==mono goto mono
  6. if %1==MONO goto mono
  7. if %1==color goto color
  8. if %1==COLOR goto color
  9. if %1==HERCULES goto hercules
  10. if %1==hercules goto hercules
  11. if %1==compaq goto compaq
  12. if %1==COMPAQ goto compaq
  13. if %1==both goto color
  14. if %1==BOTH goto color
  15. if %1==b&w goto b&w
  16. if %1==B&W goto b&w
  17. :bad
  18. echo on
  19. rem        You have not entered a valid startup switch.  You must enter
  20. rem        either "mono", "color", "hercules", "compaq", or "both".
  21. rem        Choose one of these and then try again.
  22. echo off
  23. goto ender
  24. :mono
  25. copy dbldmono.drv %2\td.drv
  26. goto ender
  27. :color
  28. copy dbldcolo.drv %2\td.drv
  29. goto ender
  30. :hercules
  31. copy dbldherc.drv %2\td.drv
  32. goto ender
  33. :compaq
  34. copy dbldcpq.drv %2\td.drv
  35. goto ender
  36. :b&w
  37. copy dbldb&w.drv %2\td.drv
  38. :ender
  39.