home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carsten's PPE Collection
/
Carstens_PPE_Collection_2007.zip
/
F
/
FDC99PWA.ZIP
/
TEST.BAT
< prev
Wrap
DOS Batch File
|
1994-02-04
|
645b
|
47 lines
@echo off
REM This batchfile is here only to aid in demonstrating this PCBoard Util
REM and is not meant to be run in an automated instance.
DATECHK.EXE %1 %2
if errorlevel 99 goto nozip
if errorlevel 98 goto noparam
if errorlevel 97 goto badtxt
if errorlevel 96 goto badate
if errorlevel 95 goto goodate
goto end
:nozip
@echo.
@echo ZIPFILE could not be opened!
goto end
:badate
@echo.
@echo File was BAD!
goto end
:noparam
@echo.
@echo No Parameters!
goto end
:badtxt
@echo.
@echo Some wrong with opening of tempfile...
goto end
:goodate
@echo.
@echo File was GOOD!
goto end
:end