Difference between revisions of "Windows Media Player"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
| Line 1: | Line 1: | ||
| − | This is a silent installer for Windows Media Player. | + | A silent installer for Windows Media Player 10: |
| + | |||
| + | <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" /> | ||
| + | <install cmd='\\server\share\mediaplayer10\ENU\mp10setup.exe /Q /R:N /C:"setup_wm.exe /Q /R:N /DisallowSystemRestore /NoPID /SetWMPAsDefault"'> | ||
| + | <exit code="194" reboot="true" /> | ||
| + | <exit code="3010" reboot="true" /> | ||
| + | </install> | ||
| + | </package> | ||
| + | |||
| + | Windows Media Connect<br> | ||
| + | This is really annoying. As far as I can tell, this installer always pops up a dialog box when System Restore is disabled, no matter how you invoke it. To work around this, we ought to save the System Restore configuration, enable it, run the installer, and restore the configuration. Instead we just enable, install, and disable. FIXME.<br> | ||
| + | Also, this just doesn't seem to work, so I've removed it. RFL | ||
| + | |||
| + | |||
| + | ---- | ||
| + | |||
| + | This is a silent installer for Windows Media Player 9. | ||
<package id="wmp92k" name="Windows Media Player 9 for Windows 2000"> | <package id="wmp92k" name="Windows Media Player 9 for Windows 2000"> | ||
Revision as of 16:35, 11 December 2005
A silent installer for Windows Media Player 10:
<package id="wmp10" name="Windows Media Player 10" > <check type="file" condition="versiongreaterorequal" path="%ProgramFiles%\Windows Media Player\wmplayer.exe" value="10.0.0.0" /> <install cmd='\\server\share\mediaplayer10\ENU\mp10setup.exe /Q /R:N /C:"setup_wm.exe /Q /R:N /DisallowSystemRestore /NoPID /SetWMPAsDefault"'> <exit code="194" reboot="true" /> <exit code="3010" reboot="true" /> </install> </package>
Windows Media Connect
This is really annoying. As far as I can tell, this installer always pops up a dialog box when System Restore is disabled, no matter how you invoke it. To work around this, we ought to save the System Restore configuration, enable it, run the installer, and restore the configuration. Instead we just enable, install, and disable. FIXME.
Also, this just doesn't seem to work, so I've removed it. RFL
This is a silent installer for Windows Media Player 9.
<package id="wmp92k" name="Windows Media Player 9 for Windows 2000"> <check type="file" condition="versiongreaterorequal" path="%ProgramFiles%\Windows Media Player\wmplayer.exe" value="9.0.0.0" /> <install cmd='\\server\share\mediaplayer9\enu\MPSetup.EXE /Q /R:N /C:"setup_wm.exe /DisallowSystemRestore /NoPID /SetWMPAsDefault /Q /R:N"' > <exit code="194" reboot="true" /> <exit code="1603" /> <exit code="3010" reboot="true" /> </install> </package>
And an update:
<package id="wmp9update2k" name="Windows Media Player 9 updates" > <check type="file" condition="versiongreaterorequal" path="%Windir%\system32\wmp.dll" value="9.0.0.3263" /> <install cmd='\\server\share\updates\mediaplayer9\windowsmedia9-kb892313-x86-intl.exe /passive /n /norestart'> <exit code="194" reboot="true" /> <exit code="1603" /> <exit code="3010" reboot="true" /> </install> </package>