home *** CD-ROM | disk | FTP | other *** search
/ PC to Maximum / PC-na-maximum.bin / DriveSpeed / BATCH / TESTRET.BAT < prev    next >
Encoding:
DOS Batch File  |  2000-06-04  |  347 b   |  25 lines

  1. @echo off
  2.  
  3. drsp j: /rs /s30 /t3 /b
  4.  
  5. if errorlevel 10 goto paramErr
  6. if errorlevel 2  goto internalErr
  7. if errorlevel 1  goto userAbort
  8.  
  9. echo All OK.
  10. goto End
  11.  
  12. :paramErr
  13. echo One of the parameters was wrong.
  14. goto End
  15.  
  16. :internalErr
  17. echo An internal error occured.
  18. goto End
  19.  
  20. :userAbort
  21. echo User aborted the session
  22.  
  23. :End
  24. echo.
  25.