Difference between revisions of "Cccp"
From WPKG | Open Source Software Deployment and Distribution
Line 1: | Line 1: | ||
− | [http://www.cccp-project.net/ CCCP (Combined Community Codec Pack )] silent install package | + | [http://www.cccp-project.net/ CCCP (Combined Community Codec Pack )] silent install package. |
+ | |||
+ | This excellent codec pack installs just the what is necessary to play any common codec (besides Quicktime and Real).<br> | ||
+ | |||
+ | It uses DirectShow so that means Windows Media Player is no longer useless but can actually play stuff!<br> | ||
+ | |||
+ | The /MERGETASKS=RegisterExtWMP means video files that CCCP allows you to view will open with Windows Media Player by default<br> | ||
+ | |||
+ | I also place a shortcut directly in the Start Menu for users to access Media Player Classic should they want.<br> | ||
<source lang="xml"> | <source lang="xml"> | ||
− | <package id=" | + | <?xml version="1.0" encoding="UTF-8"?> |
− | + | ||
− | + | ||
− | + | ||
− | + | <packages> | |
− | + | ||
− | </package> | + | <package id="codecs" |
+ | name="CCCP Codecs" | ||
+ | revision="4" | ||
+ | reboot="false" | ||
+ | priority="99"> | ||
+ | |||
+ | <check type="uninstall" condition="exists" path="Combined Community Codec Pack 2009-09-09" /> | ||
+ | |||
+ | <install cmd='"%SOFTWARE%\codecs\CCCP-2009-09-09.exe" /VERYSILENT /NORESTART /NOICONS /MERGETASKS=RegisterExtWMP' /> | ||
+ | <install cmd='%COMSPEC% /c xcopy /E /R /Y "%SOFTWARE%\codecs\Media Player Classic.lnk" "%ALLUSERSPROFILE%\Start Menu\Programs\"' /> | ||
+ | |||
+ | <upgrade cmd='"%ProgramFiles%\Combined Community Codec Pack\unins000.exe" /NORESTART /SILENT' /> | ||
+ | <upgrade cmd='"%SOFTWARE%\codecs\CCCP-2009-09-09.exe" /VERYSILENT /NORESTART /NOICONS /MERGETASKS=RegisterExtWMP' /> | ||
+ | <upgrade cmd='%COMSPEC% /c xcopy /E /R /Y "%SOFTWARE%\codecs\Media Player Classic.lnk" "%ALLUSERSPROFILE%\Start Menu\Programs\"' /> | ||
+ | |||
+ | <remove cmd='"%ProgramFiles%\Combined Community Codec Pack\unins000.exe" /NORESTART /SILENT' /> | ||
+ | |||
+ | </package> | ||
+ | |||
+ | </packages> | ||
</source> | </source> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Revision as of 03:51, 21 November 2009
CCCP (Combined Community Codec Pack ) silent install package.
This excellent codec pack installs just the what is necessary to play any common codec (besides Quicktime and Real).
It uses DirectShow so that means Windows Media Player is no longer useless but can actually play stuff!
The /MERGETASKS=RegisterExtWMP means video files that CCCP allows you to view will open with Windows Media Player by default
I also place a shortcut directly in the Start Menu for users to access Media Player Classic should they want.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="codecs"
name="CCCP Codecs"
revision="4"
reboot="false"
priority="99">
<check type="uninstall" condition="exists" path="Combined Community Codec Pack 2009-09-09" />
<install cmd='"%SOFTWARE%\codecs\CCCP-2009-09-09.exe" /VERYSILENT /NORESTART /NOICONS /MERGETASKS=RegisterExtWMP' />
<install cmd='%COMSPEC% /c xcopy /E /R /Y "%SOFTWARE%\codecs\Media Player Classic.lnk" "%ALLUSERSPROFILE%\Start Menu\Programs\"' />
<upgrade cmd='"%ProgramFiles%\Combined Community Codec Pack\unins000.exe" /NORESTART /SILENT' />
<upgrade cmd='"%SOFTWARE%\codecs\CCCP-2009-09-09.exe" /VERYSILENT /NORESTART /NOICONS /MERGETASKS=RegisterExtWMP' />
<upgrade cmd='%COMSPEC% /c xcopy /E /R /Y "%SOFTWARE%\codecs\Media Player Classic.lnk" "%ALLUSERSPROFILE%\Start Menu\Programs\"' />
<remove cmd='"%ProgramFiles%\Combined Community Codec Pack\unins000.exe" /NORESTART /SILENT' />
</package>
</packages>