home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- envdos %1 %2 %3 %4 %5 %6 %7 %8 %9
- echo
- if errorlevel 255 goto e255
- if errorlevel 1 goto e1
- if errorlevel 0 goto e0
- echo ERRORLEVEL was ?
- goto exit
- :e255
- echo ERRORLEVEL was 255
- goto exit
- :e0
- echo ERRORLEVEL was 0
- goto exit
- :e1
- echo ERRORLEVEL was 1
- :exit