home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / tools / viruschecker / vchck644.readme < prev    next >
Encoding:
Text File  |  1978-05-22  |  749 b   |  21 lines

  1. Short:    VirusChecker 6.44 Released 28 October 1994
  2. Uploader: chem194@csc.canterbury.ac.nz
  3.  
  4.      Changed Arexx CheckFile and CheckDir command.
  5.      For Checkfile RESULT will still be valid as before BUT now better
  6.      support. If VCHECK.0.0 <> 0 the there was a file infected.
  7.      VCHECK.x.1 will hold the file name and
  8.      VCHECK.x.2 will hold the Virus name
  9.      Here is how you can scan a disk using arexx.
  10.      /* Small Arexx script */
  11.      options results
  12.      address 'Virus_Checker' 'checkdrive\DH0:
  13.      if VCHECK.0.0 > 0 then do
  14.     do i = 1 to VCHECK.0.0
  15.        say VCHECK.i.1
  16.        say VCHECK.i.2
  17.     end
  18.      end
  19.      This can be used for BBS checks. Unpack the archive to a temp dir and
  20.      then run checkdir over that and check the results.
  21.