home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 27 / CITE.iso / win95 / virit / esempio.bat next >
Encoding:
DOS Batch File  |  1997-04-14  |  435 b   |  30 lines

  1. virit c:\ /nomem
  2.  
  3. @echo off
  4.  
  5. if errorlevel 4 goto errorefile
  6. if errorlevel 3 goto modificato
  7. if errorlevel 2 goto memoria
  8. if errorlevel 1 goto virus
  9.  
  10. ECHO Nessun virus trovato
  11. goto end
  12.  
  13. :virus
  14. ECHO Identificati virus nel sistema
  15. goto end
  16.  
  17. :memoria
  18. ECHO Identificato virus in memoria
  19. goto end
  20.  
  21. :modificato
  22. ECHO VirIT è stato moficato!!!!!
  23. goto end
  24.  
  25. :errorefile
  26. ECHO Errore apertura dei files
  27.  
  28. :end
  29. @echo on
  30.