home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 431.img / BAT-1.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-11-29  |  572b  |  29 lines

  1. echo off
  2. cls
  3. if "%1"=="" goto nodrive
  4. if %0==a:install goto drivea
  5. if %0==b:install goto driveb
  6. if %0==A:INSTALL goto drivea
  7. if %0==B:INSTALL goto driveb
  8. goto batinst
  9. :drivea
  10. a:
  11. goto batinst
  12. :driveb
  13. b:
  14. :batinst
  15. echo B.A.T.  Hard Disk Installation   VGA version
  16. echo ********************************************
  17. echo.    
  18. md %1\BATVGA
  19. copy *.* %1\BATVGA\*.*
  20. echo.
  21. echo.
  22. echo  NOW RUN THE INSTALL PROGRAM CONTAINED ON DISK 2.
  23. goto END
  24. :nodrive
  25. echo Please specify drive to install B.A.T. onto.  (eg. INSTALL C:)
  26. echo.        
  27. echo.        
  28. :END
  29.