Difference between revisions of "Vlc"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Made more readable and added url)
Line 1: Line 1:
This is the package for VLC (Video LAN Client), a multimedia player.
+
This is the package for [http://www.videolan.org/vlc/ VLC (Video LAN Client)], a multimedia player.
  
 
The second install command removes the desktop shortcut (the path may have to be changed to a localized name).
 
The second install command removes the desktop shortcut (the path may have to be changed to a localized name).
 +
<pre>
 +
<?xml version="1.0" encoding="UTF-8"?>
  
 +
<packages>
  
<package id="vlc" name="Video LAN Client" revision="1" reboot="false" priority="0">  
+
  <package
  <check type="uninstall" condition="exists" path="VideoLAN VLC media player 0.8.4a" />
+
      id="vlc"
  <install cmd='"%PACKAGES%\vlc\vlc-0.8.4a-win32.exe" /S' />
+
      name="Video LAN Client"
  <install cmd='%COMSPEC% /c del "%ALLUSERSPROFILE%\Desktop\VLC media player.lnk"' />   
+
      revision="1"
  <remove cmd='"%PROGRAMFILES%\VideoLAN\VLC\uninstall.exe" /S' />
+
      reboot="false"
  <upgrade cmd="" />
+
      priority="0">
</package>
+
 
+
  
 +
      <check type="uninstall" condition="exists" path="VideoLAN VLC media player 0.8.4a" />
 +
      <install cmd='"%PACKAGES%\vlc\vlc-0.8.4a-win32.exe" /S' />
 +
      <install cmd='%CMD% /c del "%ALLUSERSPROFILE%\Desktop\VLC media player.lnk"' />
 +
      <remove cmd='"%PROGRAMFILES%\VideoLAN\VLC\uninstall.exe" /S' />
 +
  </package>
 +
</packages>
 +
</pre>
  
 
[[category:Silent Installers|VLC]]
 
[[category:Silent Installers|VLC]]

Revision as of 09:49, 21 September 2006

This is the package for VLC (Video LAN Client), a multimedia player.

The second install command removes the desktop shortcut (the path may have to be changed to a localized name).

<?xml version="1.0" encoding="UTF-8"?>

<packages>

   <package
      id="vlc"
      name="Video LAN Client"
      revision="1"
      reboot="false"
      priority="0">

      <check type="uninstall" condition="exists" path="VideoLAN VLC media player 0.8.4a" />
      <install cmd='"%PACKAGES%\vlc\vlc-0.8.4a-win32.exe" /S' />
      <install cmd='%CMD% /c del "%ALLUSERSPROFILE%\Desktop\VLC media player.lnk"' />
      <remove cmd='"%PROGRAMFILES%\VideoLAN\VLC\uninstall.exe" /S' />
   </package>
</packages>