home *** CD-ROM | disk | FTP | other *** search
/ PC go! 1996 June / Image.iso / pcgo / demo / tav / os2 / osav.cmd < prev    next >
Encoding:
Text File  |  1996-04-10  |  347 b   |  24 lines

  1. @echo off
  2. osav %1 %2 %3 %4 %5
  3. if errorlevel 3 goto DELETED
  4. if errorlevel 2 goto CLEANED
  5. if errorlevel 1 goto DETECTED
  6.  
  7. echo No viruses found.
  8. goto END
  9.  
  10. :DETECTED
  11. echo Viruses were detected.
  12. goto END
  13.  
  14. :CLEANED
  15. echo Viruses were detected and cleaned.
  16. goto END
  17.  
  18. :DELETED
  19. echo Viruses were detected and deleted.
  20. goto END
  21.  
  22. :END
  23.  
  24.