home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- REM RUNVC.BAT - Quick Check for active viruses.
- echo
- echo Victor Charlie - (c) Copyright 1990 Bangkok Security Associates
- echo All rights reserved.
- echo We will run the virus detection programs twice each.
- echo This provides a FULL anti-virus check in only seconds.
- echo Making first check now . . .
- echo
- echo Victor Charlie now running a check for active viruses.
- echo
- vc2
- if errorlevel 100 goto VIRUS
- vc1
- if errorlevel 5 goto VIRUS
- if errorlevel 1 goto BAD
-
- cls
- : NEW SCREEN
- echo
- echo Victor Charlie now double-checking for active viruses.
- echo
- vc2
- :if errorlevel 1 goto VIRUS
- vc1
- if errorlevel 5 goto VIRUS
- if errorlevel 1 goto BAD
-
- cls
- : NEW SCREEN
- echo
- echo ╔════════════════════════════════╗
- echo ║ OK! No active virus detected. ║
- echo ╚════════════════════════════════╝
- echo Please run this program before you shut down every day.
- echo
- goto END
-
- :BAD
- echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- echo SOMETHING WRONG! Please see error message above!
- goto END
-
- :VIRUS
- cls
- : NEW SCREEN
- echo
- echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- echo Victor Charlie offered to reboot your computer to suspend virus activity,
- echo and you did not do so. Unless you are doing something very special,
- echo Victor Charlie believes you still have an active virus in your machine.
- echo
- echo Please reboot now. This should be a COLD BOOT:
- echo
- echo Turn off your machine, wait 10 seconds, turn your machine back on again.
- echo
-
- :END