3,217
edits
Changes
m
<source lang="xml"><package id="wmp10" name="Windows Media Player 10" >
</package></source>
<source lang="xml"><package id="wmp10updates" name="Windows Media Player 10 updates" >
</package> </source>
<source lang="xml"><package id="wmp92k" name="Windows Media Player 9 for Windows 2000">
</package> </source>
<source lang="xml"><package id="wmp9update2k" name="Windows Media Player 9 updates" >
</package> </source>
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:
<!-- 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>
Windows Media Connect<br>
And an update:
<!-- 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>
----
This is a silent installer for Windows Media Player 9.
<!-- 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>
And an update:
<!-- 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>
[[Category:Silent Installers]]