home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
inne
/
podstawy
/
dos
/
4dos
/
4uzytki
/
4error.exe
/
ERROR.BTM
next >
Wrap
Text File
|
1992-10-20
|
445b
|
23 lines
@echo off
goto Start
:Help
text
ERROR -- Explanations of DOS error levels.
Usage: ERROR <error_value> for explanation for the error_value
ERROR /? for this screen, or
ERROR for list of all standard DOS errors.
endtext
return
:Start
iff "%1" eq "" then
list %@search[error.db]
elseiff "%1" eq "/?" then
gosub help
quit
else
find " %1 " %@search[error.db]
endiff