Difference between revisions of "McAfee VirusScan Enterprise"
From WPKG | Open Source Software Deployment and Distribution
m (add external link and and description) |
m |
||
Line 1: | Line 1: | ||
− | This is a silent installer and uninstaller for McAfee VirusScan Enterprise an antivirus software. More infos from [http://www.mcafee.com/us/products/virusscan-enterprise.aspx here] | + | This is a silent installer and uninstaller for McAfee VirusScan Enterprise, an antivirus software. More infos from [http://www.mcafee.com/us/products/virusscan-enterprise.aspx here]. |
<source lang="xml"> | <source lang="xml"> |
Revision as of 17:03, 31 March 2011
This is a silent installer and uninstaller for McAfee VirusScan Enterprise, an antivirus software. More infos from here.
<package id="mcafee" name="McAfee VirusScan Enterprise" revision="1" reboot="false" priority="0">
<check type="uninstall" condition="exists" path="McAfee VirusScan Enterprise" />
<install cmd='%SOFTWARE%\ent80epo\setup REBOOT=R /qb /l*v "c:\netinst\logs\vse80i.log" ' />
<remove cmd='msiexec /uninstall{5DF3D1BB-894E-4DCD-8275-159AC9829B43} /qb /l*v "c:\netinst\logs\vse80u.log" ' />
</package>
Amended*
I tried the above but the setup would fail when upgrading an existing version 8 installation to 8.5 as some framework services were already running. I stopped the services, then uninstalled the previous version 8 and then installed 8.5. I also check for the patch version, mine is currently patch 5.
<package id="mcafee85" name="McAfee VirusScan Enterprise" revision="2" reboot="false" priority="50">
<check type="logical" condition="and">
<check type="uninstall" condition="exists" path="McAfee VirusScan Enterprise" />
<check type="file" condition="versiongreaterorequal" path="%programfiles%\mcafee\virusscan enterprise\mcupdate.exe" value="8.5.0.909" />
</check>
<install cmd='net stop mcafeeframework ' >
<exit code='2' />
</install>
<install cmd='net stop mcshield ' >
<exit code='2' />
</install>
<install cmd='net stop mctaskmanager ' >
<exit code='2' />
</install>
<install cmd='MsiExec.exe /q /X{5DF3D1BB-894E-4DCD-8275-159AC9829B43} ' >
<exit code='1605' />
</install>
<install cmd='MsiExec.exe /q /X{35C03C04-3F1F-42C2-A989-A757EE691F65} ' >
<exit code='1605' />
</install>
<install cmd='%SOFTWARE%\VSE850\setupvse.exe REBOOT=R RUNAUTOUPDATE="" RUNONDEMANDSCAN="" /qb- /lv "C:\Temp\McAfee_Install.log" ' />
<upgrade cmd='msiexec /p "%software%\vse850\patch5\patch5.MSP" /qn ' />
<remove cmd='MsiExec.exe /q /X{35C03C04-3F1F-42C2-A989-A757EE691F65} ' />
</package>
A note: The above may work for some, but it caused a lot of trouble for me- autoupdates were broken after installing with the above sequence. Pjjw 02:37, 2 October 2008 (CEST)