Difference between revisions of "F-prot Antivirus"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Added F-prot antivirus silent installer)
 
m (grammer)
Line 9: Line 9:
 
   reboot="true"
 
   reboot="true"
 
   priority="0">
 
   priority="0">
   <!-- F-Prot wants to reboot, so we install it last (priority "0" and set reboot to "true" -->
+
   <!-- F-Prot wants to reboot, so we install it last (priority "0") and set reboot to "true" -->
 
   
 
   
 
  <check
 
  <check
Line 23: Line 23:
 
  </install>
 
  </install>
 
<!-- The 3010 exit code means it needs a reboot, we are happy with that so tell  
 
<!-- The 3010 exit code means it needs a reboot, we are happy with that so tell  
wpkg to accept it -->
+
wpkg to accept it. We use the norestart switch at so that wpkg finishes cleanly and writes the
 +
changes to the local wpkg.xml file. The wpkg does the restarting.  -->
 
 
  
 
  <upgrade
 
  <upgrade
   cmd='msiexec /qb /package "%SOFTWARE%\f-prot\fpav-windows-x86-hc-en-6.0.8.0.msi"' >
+
   cmd='msiexec /qb /package %SOFTWARE%\f-prot\fpav-windows-x86-hc-en-6.0.8.0.msi /qn /norestart' >
 
   <exit
 
   <exit
 
   code="3010" /></upgrade>
 
   code="3010" /></upgrade>

Revision as of 01:16, 27 February 2008

F-PROT Antivirus (Windows, Corporate User) : www.f-prot.com

<?xml version="1.0" encoding="utf-8" ?>
<package
   id="f-prot"
   name="F-Prot"
   revision="3"
   reboot="true"
   priority="0">
   <!-- F-Prot wants to reboot, so we install it last (priority "0") and set reboot to "true" -->
 
 <check
   type="file"
   condition="exists"
   path="%PROGRAMFILES%\FRISK Software\F-PROT Antivirus for Windows\FPWin.exe" />

 <install
   cmd='msiexec /package %SOFTWARE%\f-prot\fpav-windows-x86-hc-en-6.0.8.0.msi /qn /norestart' >
			
   <exit
	code="3010" />
 </install>
<!-- The 3010 exit code means it needs a reboot, we are happy with that so tell 
wpkg to accept it. We use the norestart switch at so that wpkg finishes cleanly and writes the
changes to the local wpkg.xml file. The wpkg does the restarting.  -->
		

 <upgrade
   cmd='msiexec /qb /package %SOFTWARE%\f-prot\fpav-windows-x86-hc-en-6.0.8.0.msi /qn /norestart' >
   <exit
   code="3010" /></upgrade>


 <remove
   cmd="msiexec /qb /uninstall {634E2218_42E7_46B5_9A72_CEAD4BC92EC2}" >
   <exit
   code="3010" /></remove>

</package>

<!-- The uninstall reference is specific to 6.0.8. For example 6.0.7 used 
FE739B2B-D576-4914-B9AE-1EAC359AAE99. For later versions the correct number can be 
found by searching the registry -->