home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 343.img / KOSINC1.ZIP / INSTALLD.BAT < prev    next >
DOS Batch File  |  1990-10-25  |  457b  |  27 lines

  1. echo off
  2. cls
  3. REM test for correct parameter
  4. if %1 == 3  goto 3disk
  5. if %1 == 5  goto 5disk
  6.  
  7. echo You must type "INSTALLD 3" or "INSTALLD 5"
  8. goto End
  9.  
  10. REM set up for 3.50 720K installation and jump to that on hard disk
  11. :3disk
  12. copy 3install.bat d:\
  13. d:
  14. cd\
  15. 3install d
  16.  
  17. REM set up for 5.25 360K installation and jump to that on hard disk
  18. :5disk
  19. copy 5install.bat d:\
  20. d:
  21. cd\
  22. 5install d
  23.  
  24. :End
  25. echo Installation halted, please try again
  26.  
  27.