Difference between revisions of "K-Lite Mega Codec Pack"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (update for version 4.4.5)
m (Updated version numbers to 4.5.3)
Line 11: Line 11:
 
<package id='k-lite-mcp'
 
<package id='k-lite-mcp'
 
         name='K-Lite Mega Codec Pack'
 
         name='K-Lite Mega Codec Pack'
         revision='445'
+
         revision='453'
 
         priority='50'>
 
         priority='50'>
  
   <check type='uninstall' condition='exists' path='K-Lite Mega Codec Pack 4.4.5' />
+
   <check type='uninstall' condition='exists' path='K-Lite Mega Codec Pack 4.5.3' />
  
   <install cmd='"%SOFTWARE%\k-lite\klmcodec445.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />
+
   <install cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />
  
   <upgrade cmd='"%SOFTWARE%\k-lite\klmcodec445.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />
+
   <upgrade cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />
  
 
   <remove cmd='"%ProgramFiles%\K-Lite Codec Pack\unins000.exe" /SILENT' />
 
   <remove cmd='"%ProgramFiles%\K-Lite Codec Pack\unins000.exe" /SILENT' />
Line 29: Line 29:
 
The <code>klmcp.ini</code> file is used for customization and can be generated in advance using the following parameters to the installer:
 
The <code>klmcp.ini</code> file is used for customization and can be generated in advance using the following parameters to the installer:
  
  klmcodec445.exe -MakeUnattended
+
  klmcodec453.exe -MakeUnattended
  
Note: you can skip <code>/LoadInf</code> parameter and <code>klmcp.ini</code> file generation if you want to install K-Lite Coded Pack with default options - i.e., use these install/upgrade commands:
+
Note: you can skip <code>/LoadInf</code> parameter and <code>klmcp.ini</code> file generation if you want to install K-Lite Codec Pack with default options - i.e., use these install/upgrade commands:
  
 
<source lang="xml">
 
<source lang="xml">
<install cmd='"%SOFTWARE%\k-lite\klmcodec417.exe" /verysilent /norestart' />
+
<install cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart' />
  
<upgrade cmd='"%SOFTWARE%\k-lite\klmcodec417.exe" /verysilent /norestart' />
+
<upgrade cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart' />
 
</source>
 
</source>
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 17:23, 19 January 2009

This is a silent installer for K-Lite Mega Codec Pack.

The K-Lite Codec Pack is a collection of free audio/video codecs. Download it from K-Lite Homepage.

Use the following XML file to install it:

<?xml version="1.0" encoding="utf-8" ?>
<packages>

<package id='k-lite-mcp'
         name='K-Lite Mega Codec Pack'
         revision='453'
         priority='50'>

  <check type='uninstall' condition='exists' path='K-Lite Mega Codec Pack 4.5.3' />

  <install cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />

  <upgrade cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart /LoadInf="%SOFTWARE%\k-lite\klmcp.ini"' />

  <remove cmd='"%ProgramFiles%\K-Lite Codec Pack\unins000.exe" /SILENT' />

</package>

</packages>

The klmcp.ini file is used for customization and can be generated in advance using the following parameters to the installer:

klmcodec453.exe -MakeUnattended

Note: you can skip /LoadInf parameter and klmcp.ini file generation if you want to install K-Lite Codec Pack with default options - i.e., use these install/upgrade commands:

<install cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart' />

<upgrade cmd='"%SOFTWARE%\k-lite\klmcodec453.exe" /verysilent /norestart' />