home *** CD-ROM | disk | FTP | other *** search
/ Win 3.11 Apps / win311aps.iso / ADAPTEC / DOSINST.BAT < prev    next >
DOS Batch File  |  1995-05-15  |  1KB  |  44 lines

  1. @echo ╔═══════════════════════════════════╗
  2. @echo ║  Adaptec EZ-SCSI is initializing. ║
  3. @echo ║  Please wait...                   ║
  4. @echo ╚═══════════════════════════════════╝
  5. @echo off
  6. mkdir c:\ezscsi.tmp > nul
  7. expand ezscsi.ex! c:\ezscsi.tmp\ezscsi.exe > nul
  8. expand ezscsi.cw! c:\ezscsi.tmp\ezscsi.cwa > nul
  9. expand ezscsi.hl! c:\ezscsi.tmp\ezscsi.hlp > nul
  10. if NOT exist c:\ezscsi.tmp\ezscsi.exe goto fail
  11. if NOT exist c:\ezscsi.tmp\ezscsi.cwa goto fail
  12. if NOT exist c:\ezscsi.tmp\ezscsi.hlp goto fail
  13. c:\ezscsi.tmp\ezscsi %1 %2 %3 %4
  14. goto success
  15.  
  16. :fail
  17. @echo.
  18. @echo Unable to decompress the installation utility to your hard drive.
  19. @echo Please make sure your C: drive has at least 750K of free disk space.
  20. @echo.
  21. goto success
  22.  
  23. :success
  24. if exist c:\ezscsi.tmp\ezscsi.exe goto delexe
  25. goto chkcwa
  26.  
  27. :delexe
  28. del c:\ezscsi.tmp\ezscsi.exe
  29. :chkcwa
  30. if exist c:\ezscsi.tmp\ezscsi.cwa goto delcwa
  31. goto chkhlp
  32.  
  33. :delcwa
  34. del c:\ezscsi.tmp\ezscsi.cwa
  35. :chkhlp
  36. if exist c:\ezscsi.tmp\ezscsi.hlp goto delhlp
  37. goto deldir
  38.  
  39. :delhlp
  40. del c:\ezscsi.tmp\ezscsi.hlp
  41.  
  42. :deldir
  43. rmdir c:\ezscsi.tmp
  44.