home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / hardware / I7-A15.EXE / MAKEDISK.BAT < prev    next >
DOS Batch File  |  2000-02-16  |  763b  |  37 lines

  1. @echo off
  2. echo Dell Computer Corporation Self-Extracting Diskette Set
  3. echo.
  4. if !%seddrv%! == !! set seddrv=A:
  5. echo You will need 1 formatted diskette(s) to continue.
  6. echo.
  7. echo Press Enter to continue or Ctrl-C to exit.
  8. pause >nul:
  9. echo.
  10. :disk1
  11. echo Diskette 1 - Put a formatted, blank diskette into drive %seddrv% and press Enter.
  12. pause >nul:
  13. echo.
  14. DE5593E1.EXE %seddrv%
  15.  
  16. if errorlevel 4 goto :err1
  17. if errorlevel 3 goto :skip1
  18. if errorlevel 1 goto :err1
  19. echo.
  20. goto :disk2
  21.  
  22. :err1
  23. echo ** Error - See the line above for a description of the problem. **
  24. echo.
  25. echo ** Redoing diskette 1. **
  26. goto :disk1
  27.  
  28. :skip1
  29. echo.
  30. echo ** Skipping diskette 1. **
  31. echo.
  32. :disk2
  33. echo.
  34. echo End of the diskette set.  Press Enter.
  35. pause >nul:
  36. exit
  37.