home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
DEMOS
/
TNTOS2
/
osav.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-09-30
|
347b
|
24 lines
@echo off
osav %1 %2 %3 %4 %5
if errorlevel 3 goto DELETED
if errorlevel 2 goto CLEANED
if errorlevel 1 goto DETECTED
echo No viruses found.
goto END
:DETECTED
echo Viruses were detected.
goto END
:CLEANED
echo Viruses were detected and cleaned.
goto END
:DELETED
echo Viruses were detected and deleted.
goto END
:END