home *** CD-ROM | disk | FTP | other *** search
- @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
-
-