Difference between revisions of "AVG Free Edition"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (New page: This is a silent installer for the free version of AVG, which can be downloaded from http://free.grisoft.com/. <source lang="xml"> <packages> <package id="avg" name="free avg antivirus" ...)
 
Line 10: Line 10:
 
<remove cmd="" />
 
<remove cmd="" />
  
 +
 +
</package>
 +
</packages>
 +
</source>
 +
 +
For AVG Free version 8.0. Tip: Revision must match revisions exe name.
 +
 +
<source lang="xml">
 +
<packages>
 +
 +
<package
 +
id="avg"
 +
name="free avg antivirus 8.0"
 +
reboot="true"
 +
revision="8023701428"
 +
priority="5">
 +
<check type="uninstall" condition="exists" path="AVG Free 8.0" />
 +
<install cmd="%SOFTWARE%\AVG\avg_free_stf_en_8_237a1428.exe /HIDE /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED" />
 +
<remove cmd="" />
 +
</package>
  
 
</package>
 
</package>

Revision as of 16:22, 26 February 2009

This is a silent installer for the free version of AVG, which can be downloaded from http://free.grisoft.com/.

<packages>

<package id="avg" name="free avg antivirus" reboot="true" revision="1" priority="5">
<check type="uninstall" condition="exists" path="AVG 7.5" />

<install cmd="%SOFTWARE%\avg\avg75free.exe /HIDE /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED" />
<remove cmd="" />


</package>
</packages>

For AVG Free version 8.0. Tip: Revision must match revisions exe name.

<packages>

<package 
	id="avg" 
	name="free avg antivirus 8.0" 
	reboot="true" 
	revision="8023701428" 
	priority="5">
	<check type="uninstall" condition="exists" path="AVG Free 8.0" />
	<install cmd="%SOFTWARE%\AVG\avg_free_stf_en_8_237a1428.exe /HIDE /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED" />
	<remove cmd="" />
</package>

</package>
</packages>