home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s066 / 1.img / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-14  |  426 b   |  27 lines

  1. echo off
  2. cls
  3. if %1 == a: goto l1
  4. if %1 == A: goto l1
  5. if %1 == b: goto l1
  6. if %1 == B: goto l1
  7. goto bad
  8. :l1
  9. if %2 == c: goto l2
  10. if %2 == C: goto l2
  11. if %2 == d: goto l2
  12. if %2 == D: goto l2
  13. goto bad
  14. :l2
  15. md %2\dlc
  16. copy %1\. %2\dlc
  17. %2
  18. cd\dlc
  19. echo Installation Completed !
  20. goto end
  21. :bad
  22. cls
  23. echo Please type INSTALL [src-drv letter]: [dest-drv letter]:
  24. echo For example, INSTALL A: C:
  25. echo Try again !
  26. :end
  27.