Difference between revisions of "Internet Explorer 8"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Added to Category Internet Explorer.)
(added check for windows7)
 
Line 16: Line 16:
  
 
<depends package-id="KB932823" />
 
<depends package-id="KB932823" />
<check type='uninstall' condition='exists' path='Windows Internet Explorer 8' />
+
 
 +
<check type="logical" condition="or">
 +
<check type="uninstall" condition="exists" path="Windows Internet Explorer 8" />
 +
<check type="registry" condition="equals" path="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\CurrentVersion" value="6.1" />
 +
</check>
 +
 
 
<install cmd='%SOFTWARE%\windows\IE8-Setup-Full-xp.exe' >
 
<install cmd='%SOFTWARE%\windows\IE8-Setup-Full-xp.exe' >
 
<exit code='any' />
 
<exit code='any' />
Line 24: Line 29:
 
</source>
 
</source>
  
 +
Note: the registry check returns true on Windows7 and the package is not installed. IE8 is included in Windows7.
 
[[Category:Internet Explorer]]
 
[[Category:Internet Explorer]]
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Latest revision as of 23:19, 10 April 2010

Silent Installer for Internet Explorer 8

Download IEAK8 here [1] and install the Toolkit.

Create your custom IE8 installer bundle with the "Internet Explorer Customization Wizard 8". Note: user based settings like search providers will not work if you run WPKG under a service account.

Create the package KB932823 if you are using Windows XP and haven't got Service Pack 3 installed.


<package
	id="ie8"
	name="Internet Explorer 8"
	revision="8"
	priority="900">

	<depends package-id="KB932823" />

	<check type="logical" condition="or">
		<check type="uninstall" condition="exists" path="Windows Internet Explorer 8" />
		<check type="registry" condition="equals" path="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\CurrentVersion" value="6.1" />
	</check>

	<install cmd='%SOFTWARE%\windows\IE8-Setup-Full-xp.exe' >
		<exit code='any' />
	</install>

</package>

Note: the registry check returns true on Windows7 and the package is not installed. IE8 is included in Windows7.