home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 October / PCWorld_2006-10_cd.bin / zabezpeceni / avdisk / avdisk81l.exe / AVDISK.DEF < prev    next >
Text File  |  2005-11-09  |  11KB  |  513 lines

  1. ;
  2. ;AVDisk standard configuration file (C) Deniz Oezmen, 2001-2005
  3. ;this version released with v8.1l
  4. ;
  5. ;Needed for proper function, do not alter unless you want to add support for
  6. ;an AV program.
  7. ;Comments have to start with a ";" *in the first column*
  8. ;Always comment out blank lines within bracketed blocks!
  9. ;Identifiers of all kinds are case sensitive, except file names.
  10. ;
  11. ;There is a .config block, a .copy block and a .help block for each supported 
  12. ;AV program.
  13. ;The .copy block points the files to be copied to the startup disks.
  14. ;The definition of an AV program requires a specific and distinctive file
  15. ;name to be in the first line of this block. This is the filename AVDisk uses
  16. ;to identify an AV program.
  17. ;Files which can be found in multiple places (i.e. KAV/AVP .KEY files) have
  18. ;to be *exactly* seperated with " | " (space-pipe-space). "*" and "?" are
  19. ;also allowed to copy multiple files of the same type (e.g. *.def).
  20. ;This does not count for the first entry, which does not allow wildcards and
  21. ;multiple locations.
  22. ;The .config block contains a batch file setting the environment variable
  23. ;AVProg and may contain additional modification stuff (cf. AVPDOS32).
  24. ;The help block is similar. It should contain a brief explanation of how to
  25. ;use the specified AV program, also in batch format.
  26. ;
  27. ;Maxmimum number of supported AV software is 32 at the current release.
  28. ;Maximum number of multiple file placements is 8 at the time being.
  29. ;
  30. ;The [required] block indicates the files AVDisk needs for proper operation.
  31. ;It will automatically search them at startup. After each file entry a ",x"
  32. ;is expected. "x" may be 0 or 1, indicating whether a file will lateron be
  33. ;copied to floppy or not.
  34. ;Environment variables such as %windir% may be used.
  35. ;
  36.  
  37. [required]
  38. pkzip.exe,0
  39. pkunzip.exe,1
  40. ;csfd.exe,0
  41. 2floppy.zip,1
  42. %winbootdir%\ramdrive.sys,1
  43. %winbootdir%\emm386.exe,1
  44. %winbootdir%\himem.sys,1
  45. %winbootdir%\command\choice.com,1
  46. %winbootdir%\command\mode.com,1
  47. %winbootdir%\command\keyb.com,1
  48. %winbootdir%\command\ega.cpi,1
  49. %winbootdir%\command\keyboard.sys,1
  50. %winbootdir%\command\display.sys,1
  51. [end required]
  52.  
  53. [supported]
  54. F-Prot
  55. AVPDOS32
  56. ;AVPLite
  57. McAfee Scan
  58. NOD32
  59. IPE/EZ-AV
  60. Dr. Web
  61. AVG
  62. PC-cillin
  63. Sophos
  64. [end supported]
  65.  
  66. [F-Prot.copy]
  67. f-prot.exe
  68. *.tx0
  69. *.def
  70. [end F-Prot.copy]
  71.  
  72. [F-Prot.config]
  73. @Echo Off
  74. REM
  75. REM This program is called by AVDisk and should not be run directly
  76. REM
  77. If Not %1*==AVDisk* Goto End
  78.  
  79. Set AVProg=F-Prot
  80.  
  81. :End
  82. [end F-Prot.config]
  83.  
  84. [F-Prot.help]
  85. @Echo Off
  86. Cls
  87. Echo F-Prot Help
  88. Echo ===========
  89. Echo.
  90. Echo You can start F-Prot from the command prompt by typing:
  91. Echo.
  92. Echo    F-Prot
  93. Echo.
  94. Echo When scanning your system with F-Prot it is recommended that
  95. Echo you modify the options to the following:
  96. Echo.
  97. Echo    Scan inside archives
  98. Echo    Scan compressed executables
  99. Echo    Scan a normal system
  100. Echo    List only infected files
  101. Echo    Do not beep when a virus is found
  102. Echo    Use heuristics
  103. Echo.
  104. Echo In addition to this if you suspect your system is infected with
  105. Echo a virus you may also wish to set F-Prot to "Ignore Document Extensions"
  106. Echo or to perform a "Dumb scan of all files", however note that the later
  107. Echo is more likely to generate false alarms.
  108. Echo.
  109. [end F-Prot.help]
  110.  
  111. [AVPDOS32.copy]
  112. avpdos32.exe
  113. *.avc
  114. avp.set
  115. defdos32.prf
  116. avp_loce.dlk
  117. *.key | ..\avpsha~1\*.key | \progra~1\avpsha~1\*.key
  118. [end AVPDOS32.copy]
  119.  
  120. [AVPDOS32.config]
  121. @Echo Off
  122. REM Original AVPDOS32 configuration by Steven Craik and DigitAL56K. Modified
  123. REM for AVDisk v8 by Deniz Oezmen.
  124. REM
  125. REM This program is called by AVDisk and should not be run directly
  126. REM
  127. If Not %1*==AVDisk* Goto End
  128. REM
  129. REM Write the AVPDOS32.INI file to look for files in the current dir
  130. REM
  131.  
  132. Echo [AVP32] >AVPDOS32.INI
  133. Echo LocFile=AVP_LOCE.DLK >>AVPDOS32.INI
  134. Echo. >>AVPDOS32.INI
  135. Echo [Configuration] >>AVPDOS32.INI
  136. Echo KeyFile=avp.key >>AVPDOS32.INI
  137. Echo KeysPath=. >>AVPDOS32.INI
  138. Echo SetFile=avp.set >>AVPDOS32.INI
  139. Echo BasePath=. >>AVPDOS32.INI
  140. Echo. >>AVPDOS32.INI
  141. Echo [Registration] >>AVPDOS32.INI
  142. Echo NAME=AVDisk >>AVPDOS32.INI
  143. Echo COMPANY=AVDisk >>AVPDOS32.INI
  144.  
  145. Set AVProg=AVPDOS32
  146.  
  147. :End
  148. [end AVPDOS32.config]
  149.  
  150. [AVPDOS32.help]
  151. @Echo Off
  152. Cls
  153. Echo AVPDOS32 Help
  154. Echo =============
  155. Echo.
  156. Echo Example commands:
  157. Echo.
  158. Echo    AVPDOS32 C:\
  159. Echo       Scan program files on drive C
  160. Echo.
  161. Echo    AVPDOS32 *
  162. Echo       Scan program files on all hard disks
  163. Echo.
  164. Echo    AVPDOS32 * /-
  165. Echo       Scan program files on all hard disks and disinfect
  166. Echo.
  167. Echo    AVPDOS32 * /*
  168. Echo       Scan all files on all hard disks
  169. Echo.
  170. Echo    AVPDOS32 * /* /-
  171. Echo       Scan all files on all hard disks and disinfect
  172. Echo.
  173. Echo.
  174. Echo Type AVPDOS32 /? for full list of command line options
  175. Echo.
  176. [end AVPDOS32.help]
  177.  
  178. ;[AVPLite.copy]
  179. ;avplite.exe
  180. ;readme.txt
  181. ;avp.*
  182. ;*.avc
  183. ;[end AVPLite.copy]
  184.  
  185. ;[AVPLite.config]
  186. ;@Echo Off
  187. ;REM
  188. ;REM This program is called by AVDisk and should not be run directly
  189. ;REM
  190. ;If Not %1*==AVDisk* Goto End
  191. ;
  192. ;Set AVProg=AVPLite
  193. ;
  194. ;:End
  195. ;[end AVPLite.config]
  196.  
  197. ;[AVPLite.help]
  198. ;@Echo Off
  199. ;Cls
  200. ;Echo AVPLite Help
  201. ;Echo ============
  202. ;Echo.
  203. ;Echo Example commands:
  204. ;Echo.
  205. ;Echo    AVPLite C:\
  206. ;Echo       Scan program files on drive C
  207. ;Echo.
  208. ;Echo    AVPLite *
  209. ;Echo       Scan program files on all hard disks
  210. ;Echo.
  211. ;Echo    AVPLite * /-
  212. ;Echo       Scan program files on all hard disks and disinfect
  213. ;Echo.
  214. ;Echo    AVPLite * /*
  215. ;Echo       Scan all files on all hard disks
  216. ;Echo.
  217. ;Echo    AVPLite * /* /-
  218. ;Echo       Scan all files on all hard disks and disinfect
  219. ;Echo.
  220. ;Echo.
  221. ;Echo Type AVPLite /? for full list of command line options
  222. ;Echo.
  223. ;[end AVPLite.help]
  224.  
  225. [McAfee Scan.copy]
  226. scanpm.exe
  227. license.dat
  228. messages.dat
  229. scan.dat
  230. names.dat
  231. clean.dat
  232. [end McAfee Scan.copy]
  233.  
  234. [McAfee Scan.config]
  235. @Echo Off
  236. REM
  237. REM This program is called by AVDisk and should not be run directly
  238. REM
  239. If Not %1*==AVDisk* Goto End
  240.  
  241. Set AVProg=ScanPM
  242.  
  243. :End
  244. [end McAfee Scan.config]
  245.  
  246. [McAfee Scan.help]
  247. @Echo Off
  248. Cls
  249. Echo VirusScan Help
  250. Echo ==============
  251. Echo.
  252. Echo Example commands:
  253. Echo.
  254. Echo    SCANPM C:\ /SUB
  255. Echo       Scan program files on drive C
  256. Echo.
  257. Echo    SCANPM /ADL
  258. Echo       Scan program files on all hard disks
  259. Echo.
  260. Echo    SCANPM /ADL /CLEAN
  261. Echo       Scan program files on all hard disks and disinfect
  262. Echo.
  263. Echo    SCANPM /ADL /ALL
  264. Echo       Scan all files on all hard disks
  265. Echo.
  266. Echo    SCANPM /ADL /ALL /CLEAN
  267. Echo       Scan all files on all hard disks and disinfect
  268. Echo.
  269. Echo.
  270. Echo Type SCANPM /? for full list of command line options
  271. Echo.
  272. [end McAfee Scan.help]
  273.  
  274. [NOD32.copy]
  275. nod32dos.exe
  276. *.000
  277. nod32.cfg
  278. [end NOD32.copy]
  279.  
  280. [NOD32.config]
  281. @Echo Off
  282. REM
  283. REM This program is called by AVDisk and should not be run directly
  284. REM
  285. If Not %1*==AVDisk* Goto End
  286.  
  287. Set AVProg=NOD32
  288.  
  289. :End
  290. [end NOD32.config]
  291.  
  292. [NOD32.help]
  293. @Echo Off
  294. Cls
  295. Echo NOD32 Help
  296. Echo ==========
  297. Echo.
  298. Echo You can start NOD from the command prompt by typing:
  299. Echo.
  300. Echo    NOD32DOS
  301. Echo.
  302. Echo When scanning your system with NOD it is recommended that
  303. Echo you modify the options to the following (choose the setup tab):
  304. Echo.
  305. Echo    "All" diagnostics targets
  306. Echo    "All" diagnostics methods
  307. Echo    "Standard" heuristic sensitivity
  308. Echo    "Offer an action" on virus detection
  309. Echo.
  310. Echo If you suspect a virus infection, but NOD does not find anything using
  311. Echo these settings, you may set the heuristics sensitivity to "Deep" and scan
  312. Echo again. But be aware that this setting might lead to a higher false alarm
  313. Echo rate.
  314. Echo.
  315. [end NOD32.help]
  316.  
  317. [IPE/EZ-AV.copy]
  318. vet.dat
  319. rescue.exe
  320. vetmacro.dat
  321. vet.da1
  322. [end IPE/EZ-AV.copy]
  323.  
  324. [IPE/EZ-AV.config]
  325. @Echo Off
  326. REM
  327. REM This program is called by AVDisk and should not be run directly
  328. REM
  329. If Not %1*==AVDisk* Goto End
  330.  
  331. Set AVProg=IPE/EZ-AV
  332.  
  333. :End
  334. [end IPE/EZ-AV.config]
  335.  
  336. [IPE/EZ-AV.help]
  337. @Echo Off
  338. Cls
  339. Echo IPE/EZ-AV Help
  340. Echo ==============
  341. Echo.
  342. Echo Example commands:
  343. Echo.
  344. Echo    RESCUE C:\*.* /r
  345. Echo       Scan program files on drive C
  346. Echo.
  347. Echo    RESCUE C:\*.* /r /f
  348. Echo       Scan all files on drive C
  349. Echo.
  350. Echo Type RESCUE /? for a full list of command line options
  351. Echo.
  352. [end IPE/EZ-AV.help]
  353.  
  354. [Dr. Web.copy]
  355. drweb386.exe
  356. drweb32.key
  357. drweb32.dll
  358. *.dwl
  359. *.vdb
  360. [end Dr. Web.copy]
  361.  
  362. [Dr. Web.config]
  363. @Echo Off
  364. REM
  365. REM This program is called by AVDisk and should not be run directly
  366. REM
  367. If Not %1*==AVDisk* Goto End
  368.  
  369. Set AVProg=Dr. Web
  370.  
  371. :End
  372. [end Dr. Web.config]
  373.  
  374. [Dr. Web.help]
  375. @Echo Off
  376. Cls
  377. Echo Dr. Web Help
  378. Echo ============
  379. Echo.
  380. Echo Example commands:
  381. Echo.
  382. Echo    DRWEB386 C: /al
  383. Echo       Scan all files on drive C:
  384. Echo.
  385. Echo    DRWEB386 *
  386. Echo       Scan all drives
  387. Echo.
  388. Echo Type DRWEB386 /? for a full list of command line options
  389. Echo.
  390. [end Dr. Web.help]
  391.  
  392. [AVG.copy]
  393. avg.exe
  394. avg7dos.lng
  395. avi7.avg
  396. [end AVG.copy]
  397.  
  398. [AVG.config]
  399. @Echo Off
  400. REM
  401. REM This program is called by AVDisk and should not be run directly
  402. REM
  403. If Not %1*==AVDisk* Goto End
  404.  
  405. Set AVProg=AVG
  406.  
  407. :End
  408. [end AVG.config]
  409.  
  410. [AVG.help]
  411. @Echo Off
  412. Cls
  413. Echo AVG Help
  414. Echo ========
  415. Echo.
  416. Echo Example commands:
  417. Echo.
  418. Echo    AVG C:\
  419. Echo       Performs a default scan of drive C:
  420. Echo.
  421. Echo    AVG /?
  422. Echo       Gives you additional options
  423. Echo.
  424. [end AVG.help]
  425.  
  426. [PC-cillin.copy]
  427. pcscan.exe
  428. dos4gw.exe
  429. pcscan.dat
  430. generic.bin
  431. lpt$vpn.*
  432. [end PC-cillin.copy]
  433.  
  434. [PC-cillin.config]
  435. @Echo Off
  436. REM
  437. REM This program is called by AVDisk and should not be run directly
  438. REM
  439. If Not %1*==AVDisk* Goto End
  440.  
  441. Set AVProg=PC-cillin
  442.  
  443. :End
  444. [end PC-cillin.config]
  445.  
  446. [PC-cillin.help]
  447. @Echo Off
  448. Cls
  449. Echo PC-cillin Help
  450. Echo ==============
  451. Echo.
  452. Echo Example commands:
  453. Echo.
  454. Echo    PCSCAN /V
  455. Echo       Scans program files on all local drives
  456. Echo.
  457. Echo    PCSCAN /V /A
  458. Echo       Scans all files on all local drives
  459. Echo.
  460. Echo    PCSCAN C: D:
  461. Echo       Scans program files on drives C and D only
  462. Echo.
  463. Echo Type PCSCAN /? for a full list of options and more examples.
  464. Echo.
  465. [end PC-cillin.help]
  466.  
  467. [Sophos.copy]
  468. sweep.exe
  469. dos4gw.exe
  470. vdl.dat
  471. vdl??.vdb
  472. *.ide
  473. [end Sophos.copy]
  474.  
  475. [Sophos.config]
  476. @Echo Off
  477. REM
  478. REM This program is called by AVDisk and should not be run directly
  479. REM
  480. If Not %1*==AVDisk* Goto End
  481.  
  482. Set AVProg=Sophos
  483.  
  484. :End
  485. [end Sophos.config]
  486.  
  487. [Sophos.help]
  488. @Echo Off
  489. Cls
  490. Echo SWEEP Help
  491. Echo ==========
  492. Echo.
  493. Echo Example commands:
  494. Echo.
  495. Echo    SWEEP C: -P=C:\REPORT.TXT
  496. Echo       Scan program files on drive C and log to file C:\REPORT.TXT
  497. Echo.
  498. Echo    SWEEP *:
  499. Echo       Scan program files on all hard disks
  500. Echo.
  501. Echo    SWEEP *: -DI
  502. Echo       Scan program files on all hard disks and disinfect
  503. Echo.
  504. Echo    SWEEP *: -ALL
  505. Echo       Scan all files on all hard disks
  506. Echo.
  507. Echo    SWEEP *: -ALL -DI -NB
  508. Echo       Scan all files on all hard disks, disinfect and 
  509. Echo       do not beep on virus discovery.
  510. Echo.
  511. Echo Type SWEEP -? for full list of command line options
  512. Echo.
  513. [end Sophos.help]