Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Completed

Package Request: Webex Teams and Meetings

It would be nice to have the Webex desktop clients, Teams and Meetings, available in the package library. These are fairly widely used and free to download, so they would be helpful additions to the library.

https://www.webex.com/downloads.html

2

Comments

3 comments
Date Votes
  • Official comment
  • The file names I added _versionnumber to so I can see at a glance in the dir I keep them.  I copied and pasted what I have and it works fine.  The hard part is the older software doesn't always get removed if you push out the newer so you have to go into PDQ inventory, search the pc, click on applications, find the old version, right-click, uninstall because sometimes the older versions hid in folders outside the normal Program Files. 

     

    Teams

    msiexec.exe /i "WebexTeams_3.0.msi" ALLUSERS=1 /qn /norestart /log output.log

     

    Meetings

    msiexec.exe /i "webexapp_39.11.2.msi" ALLUSERS=1 /qn /norestart /log output.log

     

    Productivity tools

    msiexec.exe /i "webexplugin39.11.1.msi" ALLUSERS=1 /qn /norestart /log output.log

    0
  • I agree that Webex packages would be useful.

     

    I have also had the same difficulties with old versions not being removed when installing the latest version. Also, some of the install packages install to the user's app data directory rather than machine wide. I have used the following to work around this:

    Webex Teams example

    #remove previous versions

    wmic product where "name like 'Webex Teams%'" call uninstall /nointeractive

    #install for all users

    msiexec.exe /i "WebexTeams.msi" ALLUSERS=1 /qn /norestart /log output.log INSTALLFOLDER="C:\Program Files\Cisco Spark"

     

     

    0