home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / ra / raft27.zip / RAUS.CTL < prev    next >
Text File  |  1993-07-18  |  2KB  |  58 lines

  1. ; Remote Access Upload Checker V1.5, Copyright (C) 1993 by Chris Buijs.
  2. ; -----------------------------------------------------------------------------
  3. ;
  4. ;
  5. ; This file contains the dos-commands for checking uploaded files.
  6. ;
  7. ; Line beginning with an semi-colomn are ignored.
  8. ;
  9. ; Don't use TABS!
  10. ;
  11. ; Each line contains an extension and command to execute.
  12. ;
  13. ; Syntax:  <Extension> <Test Command> [|<Extract Command>]
  14. ;
  15. ; <Extension>       - File extension to trigger the command.
  16. ; <Test Command>    - Command to execute for checking file integrity.
  17. ; <Extract Command> - Command to execute for extracting files from archive
  18. ;                     (optional).
  19. ;
  20. ; The <Extract Command> is optional, when entered it will be used to extract
  21. ; files from the archive, when extracted the virus-scan utility SCAN from
  22. ; McaFee is started to check the extracted files, scan is executed with the
  23. ; following paramers: SCAN *.* /A /NOEXPIRE /NOMEM /NOPAUSE, so SCAN will
  24. ; check all files, doesn't check memory and doesn't pause on any messages.
  25. ;
  26. ; Variable %F is replaced with the full path and name of the file to
  27. ; check.
  28. ;
  29. ;
  30. ; -----------------------------------------------------------------------------
  31. ; Commands for files with .COM or .EXE extensions
  32. ;
  33. COM scan %f /noexpire /nomem /nopause
  34. EXE scan %f /noexpire /nomem /nopause
  35. ;
  36. ;
  37. ;
  38. ; Commands for testing pictures
  39. ;
  40. GIF giftest %f
  41. ;
  42. ;
  43. ;
  44. ; Commands for testing/extracting archives, use the pipe-line (|) for
  45. ; sepparating the test and extract commands.
  46. ; NOTE: the extracting command may NOT recreate any sub-directorys and MUST
  47. ;       allow file-overwriting, the following samples are correct for this.
  48. ;
  49. ARC pkunpak -t %f    |pkunpak -r %f
  50. ARJ arj t %f         |arj e -y %f
  51. LHA lha t %f         |lha e -m %f
  52. LZH lha t %f         |lha e -m %f
  53. PAK pak T %f         |pak e /WA %f
  54. ZIP pkunzip -t %f    |pkunzip -o %f
  55. ;
  56. ;
  57. ; <EOF>
  58.