Difference between revisions of "ClamWin"
From WPKG | Open Source Software Deployment and Distribution
m (minor cleanup) |
|||
Line 22: | Line 22: | ||
<!-- <check type="uninstall" condition="exists" path="ClamWin" /> --> | <!-- <check type="uninstall" condition="exists" path="ClamWin" /> --> | ||
<check type="file" condition="exists" path="%PROGRAMFILES%\clamwin\bin\clamtray.exe" /> | <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'> | + | <install cmd='\\server\public\software\windows\clamwin-0.87.1-setup.exe /SP- /SILENT /NORESTART /NOCANCEL'> |
<exit code="0" /> | <exit code="0" /> | ||
</install> | </install> |
Revision as of 19:11, 25 February 2006
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.
ClamWin 0.87.1 uses Inno Setup.
References:
- http://www.samag.com/documents/s=9464/sam0501a/0501a.htm
- http://www.winlibre.com/wiki/doku.php?id=winlibre_dev:travail_en_cours
Warning: The following setup has not been tested very much yet.
Warning: ClamWin uses cygwin. If you have multiple programs using different versions of cygwin DLLs, you may have problems!
Note: 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>