Difference between revisions of "Skype"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Skype packaged as msi)
m
Line 31: Line 31:
 
         priority="10">
 
         priority="10">
 
         <check type="uninstall" condition="exists" path="Skype 3.0" />
 
         <check type="uninstall" condition="exists" path="Skype 3.0" />
         <install cmd='msiexec /qb /i %SOFTWARE%\Vari\SkypeSetup.msi' />
+
         <install cmd='msiexec /qb /i %SOFTWARE%\SkypeSetup.msi' />
         <upgrade cmd='msiexec /qb /i %SOFTWARE%\Vari\SkypeSetup.msi' />
+
         <upgrade cmd='msiexec /qb /i %SOFTWARE%\SkypeSetup.msi' />
 
         <remove cmd='%PROGRAMFILES%\Skype\Phone\Skype.exe /shutdown' />
 
         <remove cmd='%PROGRAMFILES%\Skype\Phone\Skype.exe /shutdown' />
         <remove cmd='msiexec /qn /x %SOFTWARE%\Vari\SkypeSetup.msi /norestart' />
+
         <remove cmd='msiexec /qn /x %SOFTWARE%\SkypeSetup.msi /norestart' />
 
</package>
 
</package>
 
</packages>
 
</packages>

Revision as of 13:09, 19 January 2007

This is a silent installer for the Skype. Download it from www.skype.com.

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
        id="skype"
        name="Skype"
        revision="1"
        reboot="false"
        priority="10">
        <check type="file" condition="exists" path="%PROGRAMFILES%\Skype\Phone\unins000.exe" />
        <install cmd='%SOFTWARE%\SkypeSetup.exe /norestart /silent /sp-' />
        <upgrade cmd='%SOFTWARE%\SkypeSetup.exe /norestart /silent /sp-' />
        <remove cmd='%PROGRAMFILES%\Skype\Phone\unins000.exe /SILENT' />
</package>
</packages>


Also for the so called "Skype for Business" version (packaged as .msi, no unins000.exe inside Skype\Phone).

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
        id="skype"
        name="Skype"
        revision="1"
        reboot="false"
        priority="10">
        <check type="uninstall" condition="exists" path="Skype 3.0" />
        <install cmd='msiexec /qb /i %SOFTWARE%\SkypeSetup.msi' />
        <upgrade cmd='msiexec /qb /i %SOFTWARE%\SkypeSetup.msi' />
        <remove cmd='%PROGRAMFILES%\Skype\Phone\Skype.exe /shutdown' />
        <remove cmd='msiexec /qn /x %SOFTWARE%\SkypeSetup.msi /norestart' />
</package>
</packages>