Changes

Windows Media Player

127 bytes added, 11:07, 1 May 2008
m
no edit summary
Silent installation for Windows Media Player 11 (including an update):
<PREsource lang="xml">
<?xml version="1.0" encoding="utf-8" ?>
<packages>
</packages>
</PREsource>
A silent installer for Windows Media Player 10:
<source lang="xml"><package id="wmp10" name="Windows Media Player 10" >
<!-- Windows Media Player 10 -->
<check type="file" condition="versiongreaterorequal" path="%ProgramFiles%\Windows Media Player\wmplayer.exe" value="10.0.0.0" />
<exit code="3010" reboot="true" />
</install>
</package></source>
Windows Media Connect<br>
And an update:
<source lang="xml"><package id="wmp10updates" name="Windows Media Player 10 updates" >
<!-- FIX: Updates for Windows Media Player 10 -->
<check type="file" condition="versiongreaterorequal" path="%windir%\system32\Wmp.dll" value="10.0.0.3901" />
<exit code="3010" reboot="true" />
</install>
</package> </source>
----
This is a silent installer for Windows Media Player 9.
<source lang="xml"><package id="wmp92k" name="Windows Media Player 9 for Windows 2000">
<!-- Windows Media Player 9 Series for Windows 98 Second Edition, Me, and 2000 -->
<check type="file" condition="versiongreaterorequal" path="%ProgramFiles%\Windows Media Player\wmplayer.exe" value="9.0.0.0" />
<exit code="3010" reboot="true" />
</install>
</package> </source>
And an update:
<source lang="xml"><package id="wmp9update2k" name="Windows Media Player 9 updates" >
<!-- FIX: Updates for Windows Media Player 9 -->
<check type="file" condition="versiongreaterorequal" path="%Windir%\system32\wmp.dll" value="9.0.0.3263" />
<exit code="3010" reboot="true" />
</install>
</package> </source>
[[Category:Silent Installers]]