home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- drsp j: /rs /s30 /t3 /b
-
- if errorlevel 10 goto paramErr
- if errorlevel 2 goto internalErr
- if errorlevel 1 goto userAbort
-
- echo All OK.
- goto End
-
- :paramErr
- echo One of the parameters was wrong.
- goto End
-
- :internalErr
- echo An internal error occured.
- goto End
-
- :userAbort
- echo User aborted the session
-
- :End
- echo.
-