Difference between revisions of "Webex"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Added silent install links)
m (b)
Line 32: Line 32:
 
     </package>
 
     </package>
 
</packages:packages>
 
</packages:packages>
</source lang>
+
</source>
 
+
 
[[category:Silent Installers|Webex]]
 
[[category:Silent Installers|Webex]]

Revision as of 07:00, 7 May 2012

Cisco Webex

Installs Webex meeting centre plugin. This allows PC's with software restriction policies to join & host Webex meeting and also avoids needing your browser to have a Java plugin.

You can download the MSI's from the downloads page on your meeting centre support page.




<?xml version="1.0" encoding="UTF-8"?>
<packages:packages
        xmlns:packages="http://www.wpkg.org/packages" xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.wpkg.org/packages ../xsd/packages.xsd" >
 
    <package
            id="webex"
            name="Webex Meeting Centre"
            revision="%PKG_VERSION%"
            reboot="false"
            priority="10">
 
        <variable name="PKG_VERSION"     value="8.29.3202" />
 
        <check type="uninstall" condition="versiongreaterorequal" path="Cisco WebEx Meeting Center for Firefox or Chrome"  value="%PKG_VERSION%" />

        <install cmd='msiexec /i "%SOFTWARE%\webex\atmcie.msi" /qn' />
        <install cmd='msiexec /i "%SOFTWARE%\webex\atmcns.msi" /qn' />

        <update include="install" />
    </package>
</packages:packages>