home *** CD-ROM | disk | FTP | other *** search
/ hobbes.nmsu.edu / 2008-06-02_hobbes.nmsu.edu.zip / dos / lnix11c.zip / INSTALL.BAT next >
DOS Batch File  |  1996-04-28  |  939b  |  57 lines

  1. @echo off > NUL
  2. choice /c:abcdef "Which drive do you wish to install L-nix to "
  3. if errorlevel 6 goto f
  4. if errorlevel 5 goto e
  5. if errorlevel 4 goto d
  6. if errorlevel 3 goto c
  7. if errorlevel 2 goto b
  8. if errorlevel 1 goto a
  9. :a
  10. echo ...
  11. echo Installing L-NIX version 1.1c to drive A...
  12. echo ...
  13. pause
  14. unzip lx-bins -d a:\
  15. goto End
  16. :b
  17. echo ...
  18. echo Installing L-NIX version 1.1c to drive B...
  19. echo ...
  20. pause
  21. unzip lx-bins -d b:\
  22. goto End
  23. :c
  24. echo ...
  25. echo Installing L-NIX version 1.1c to drive C...
  26. echo ...
  27. pause
  28. unzip lx-bins -d c:\
  29. goto End
  30. :d
  31. echo ...
  32. echo Installing L-NIX version 1.1c to drive D...
  33. echo ...
  34. pause
  35. unzip lx-bins -d d:\
  36. goto End
  37.  
  38. :e
  39. echo ...
  40. echo Installing L-NIX version 1.1c to drive E...
  41. echo ...
  42. pause
  43. unzip lx-bins -d e:\
  44. goto End
  45.  
  46. :f
  47. echo ...
  48. echo Installing L-NIX version 1.1c to drive F...
  49. echo ...
  50. pause
  51. unzip lx-bins -d F:\
  52. goto End
  53.  
  54. :End
  55. echo ...
  56. type readme
  57.