home *** CD-ROM | disk | FTP | other *** search
/ Significant Series Windows / significantserieswindows1993.i / 0winrun / 3708 / install.bat < prev    next >
DOS Batch File  |  1991-11-11  |  828b  |  33 lines

  1. echo off
  2. cls
  3. ECHO TSL INSTALL FILE Copyright (C) 1991, THE SOFTWARE LABS, All Rights Reserved
  4. ECHO  
  5. if %1x == x goto error
  6. if %2x == x goto error
  7. if %1 == %2 goto error
  8. if %2 == a: goto floppy
  9. if %2 == A: goto floppy
  10. if %2 == B: goto floppy
  11. if %2 == b: goto floppy
  12. ECHO  
  13. ECHO Installing program on drive %2, one moment...
  14. %2
  15. cd\
  16. md GALACTIC
  17. cd \GALACTIC
  18. copy %1*.*
  19. ECHO  
  20. ECHO ...Installation complete.
  21. ECHO  
  22. ECHO OFF
  23. goto done
  24. :error
  25. echo ** ERROR: you MUST specify the SOURCE and TARGET drives! **
  26. echo If you are trying to install from drive A to C, type INSTALL A: C: [press
  27. echo ENTER] at the A prompt. If you trying to install from drive B to C, type
  28. echo INSTALL B: C:  [press ENTER] at the B prompt.
  29. echo For further information please refer to the TSLHELP or NSLHELP!
  30. :done
  31. pause
  32. cls
  33.