home *** CD-ROM | disk | FTP | other *** search
- rem This Netware example sends a network console message, displays a user
- rem message, logs the workstation off the network and then freezes the
- rem system. It can be run when the LANSD Task Scheduler detects a
- rem VirusNet/Pro Errorlevel of 4 (memory virus). Please consult your LANSD
- rem documentation for information on implementing Errorlevel detection.
-
- rem Substitute the appropriate SEND and LOGOUT commands for your network.
-
- rem A LANSD directory is made under the F:\LOGIN directory since the
- rem directory will still be accessible after the user is logged out of
- rem the network. Copy your network's SEND and LOGOUT programs, the LANSD
- rem LOCKUP program, and this MEMVIRUS batch file to the f:\login\lansd
- rem directory. Grant Read and Execute privileges in this directory.
- rem Do not grant Write or Modify privileges to these files since they will
- rem be run on virus-infected workstations!
-
- @echo off
- f:\login\lansd\send "Workstation memory virus!" console
- echo ┌────────────────────────────────────────────────────────┐
- echo │ Virus infection found in workstation memory! │█
- echo │ │█
- echo │ Logging workstation off of network! │█
- echo │ │█
- echo │ Please contact John immediately at Ext. 123 for help. │█
- echo └────────────────────────────────────────────────────────┘█
- echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
- f:\login\lansd\logout
- f:\login\lansd\lockup
-
-