home *** CD-ROM | disk | FTP | other *** search
- ; Remote Access Upload Checker V1.5, Copyright (C) 1993 by Chris Buijs.
- ; -----------------------------------------------------------------------------
- ;
- ;
- ; This file contains the dos-commands for checking uploaded files.
- ;
- ; Line beginning with an semi-colomn are ignored.
- ;
- ; Don't use TABS!
- ;
- ; Each line contains an extension and command to execute.
- ;
- ; Syntax: <Extension> <Test Command> [|<Extract Command>]
- ;
- ; <Extension> - File extension to trigger the command.
- ; <Test Command> - Command to execute for checking file integrity.
- ; <Extract Command> - Command to execute for extracting files from archive
- ; (optional).
- ;
- ; The <Extract Command> is optional, when entered it will be used to extract
- ; files from the archive, when extracted the virus-scan utility SCAN from
- ; McaFee is started to check the extracted files, scan is executed with the
- ; following paramers: SCAN *.* /A /NOEXPIRE /NOMEM /NOPAUSE, so SCAN will
- ; check all files, doesn't check memory and doesn't pause on any messages.
- ;
- ; Variable %F is replaced with the full path and name of the file to
- ; check.
- ;
- ;
- ; -----------------------------------------------------------------------------
- ; Commands for files with .COM or .EXE extensions
- ;
- COM scan %f /noexpire /nomem /nopause
- EXE scan %f /noexpire /nomem /nopause
- ;
- ;
- ;
- ; Commands for testing pictures
- ;
- GIF giftest %f
- ;
- ;
- ;
- ; Commands for testing/extracting archives, use the pipe-line (|) for
- ; sepparating the test and extract commands.
- ; NOTE: the extracting command may NOT recreate any sub-directorys and MUST
- ; allow file-overwriting, the following samples are correct for this.
- ;
- ARC pkunpak -t %f |pkunpak -r %f
- ARJ arj t %f |arj e -y %f
- LHA lha t %f |lha e -m %f
- LZH lha t %f |lha e -m %f
- PAK pak T %f |pak e /WA %f
- ZIP pkunzip -t %f |pkunzip -o %f
- ;
- ;
- ; <EOF>
-