home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s079 / 1.img / INSTALHD.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-11-17  |  692 b   |  33 lines

  1. echo off
  2. echo Please enter your Hard Disk Drive letter [B..E]
  3. echo any other key to abort ...
  4. a:\instpeel
  5. if errorlevel 102 goto END
  6. if errorlevel 101 goto E
  7. if errorlevel 100 goto D
  8. if errorlevel 99 goto C
  9. if errorlevel 98 goto B
  10. if errorlevel 70 goto END
  11. if errorlevel 69 goto E
  12. if errorlevel 68 goto D
  13. if errorlevel 67 goto C
  14. if errorlevel 66 goto B
  15. goto END
  16. :B
  17. echo Installing PEEL software to Drive B ...
  18. a:\genpeel B d1
  19. goto END
  20. :C
  21. echo Installing PEEL software to Drive C ...
  22. a:\genpeel C d1
  23. goto END
  24. :D
  25. echo Installing PEEL software to Drive D ...
  26. a:\genpeel D d1
  27. goto END
  28. :E
  29. echo Installing PEEL software to Drive E ...
  30. a:\genpeel E d1
  31. goto END
  32. :END
  33.