home *** CD-ROM | disk | FTP | other *** search
- Short: VirusChecker 6.44 Released 28 October 1994
- Uploader: chem194@csc.canterbury.ac.nz
-
- Changed Arexx CheckFile and CheckDir command.
- For Checkfile RESULT will still be valid as before BUT now better
- support. If VCHECK.0.0 <> 0 the there was a file infected.
- VCHECK.x.1 will hold the file name and
- VCHECK.x.2 will hold the Virus name
- Here is how you can scan a disk using arexx.
- /* Small Arexx script */
- options results
- address 'Virus_Checker' 'checkdrive\DH0:
- if VCHECK.0.0 > 0 then do
- do i = 1 to VCHECK.0.0
- say VCHECK.i.1
- say VCHECK.i.2
- end
- end
- This can be used for BBS checks. Unpack the archive to a temp dir and
- then run checkdir over that and check the results.
-