Difference between revisions of "ClamWin"
From WPKG | Open Source Software Deployment and Distribution
(new page) |
|||
Line 2: | Line 2: | ||
The following setup has not been tested very much yet. | The following setup has not been tested very much yet. | ||
+ | |||
+ | Note: ClamWin 0.87.1 uses Inno Setup. | ||
+ | |||
+ | Reference: | ||
+ | * http://www.samag.com/documents/s=9464/sam0501a/0501a.htm | ||
+ | * http://www.winlibre.com/wiki/doku.php?id=winlibre_dev:travail_en_cours | ||
+ | |||
+ | Warning: ClamWin uses cygwin. If you have multiple programs using different versions of cygwin DLLs, you will have problems! | ||
+ | |||
+ | I tried an uninstall condition for clamwin, and I don't know why it fails? | ||
+ | |||
<package id="clamwin" | <package id="clamwin" | ||
Line 8: | Line 19: | ||
reboot="false" | reboot="false" | ||
priority="1"> | priority="1"> | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
<!-- I don't know why the uninstall condition fails --> | <!-- I don't know why the uninstall condition fails --> | ||
<!-- <check type="uninstall" condition="exists" path="ClamWin" /> --> | <!-- <check type="uninstall" condition="exists" path="ClamWin" /> --> |
Revision as of 19:40, 14 December 2005
ClamWin is an free, open source antivirus scanner for Windows. ClamWin uses the ClamAV antivirus scanning engine. ClamWin supports on-request and scheduled scanning, but ClamWin does not perform any on-access scanning.
The following setup has not been tested very much yet.
Note: ClamWin 0.87.1 uses Inno Setup.
Reference:
- http://www.samag.com/documents/s=9464/sam0501a/0501a.htm
- http://www.winlibre.com/wiki/doku.php?id=winlibre_dev:travail_en_cours
Warning: ClamWin uses cygwin. If you have multiple programs using different versions of cygwin DLLs, you will have problems!
I tried an uninstall condition for clamwin, and I don't know why it fails?
<package id="clamwin" name="ClamWin Free Antivirus" revision="1" reboot="false" priority="1">
<check type="file" condition="exists" path="%PROGRAMFILES%\clamwin\bin\clamtray.exe" /> <install cmd='\\server\public\software\windows\clamwin-0.87.1-setup.exe SP- /SILENT /NORESTART /NOCANCEL'> <exit code="0" /> </install> </package>
<package id="clamwin-win9x" name="ClamWin Configuration for Windows 95, 98, ME" revision="1" reboot="false" priority="0" execute="once"> <install cmd='mkdir c:\program files\clamwin' /> <install cmd='mkdir c:\program files\clamwin\bin' /> <install cmd='cp \\server\netlogon\wpkg\clamwin\clamwin-9x.conf %PROGRAMFILES%\ClamWin\bin\ClamWin.conf' /> <install cmd='cp \\server\netlogon\wpkg\clamwin\ScheduledScans %PROGRAMFILES%\ClamWin\bin\ScheduledScans' /> </package>
<package id="clamwin-winnt" name="ClamWin Configuration for Windows NT, 2000, XP" revision="1" reboot="false" priority="0" execute="once"> <install cmd='mkdir c:\program files\clamwin' /> <install cmd='mkdir c:\program files\clamwin\bin' /> <install cmd='cp \\server\netlogon\wpkg\clamwin\clamwin-nt.conf %PROGRAMFILES%\ClamWin\bin\ClamWin.conf' /> <install cmd='cp \\server\netlogon\wpkg\clamwin\ScheduledScans %PROGRAMFILES%\ClamWin\bin\ScheduledScans' /> </package>