home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / DEMOS / TNTOS2 / osav.cmd < prev    next >
OS/2 REXX Batch file  |  1997-09-30  |  347b  |  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.