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.
2
Comments
Teams and Meetings are now available in the Package Library.
https://www.reddit.com/r/PDQDeploy/comments/fofvp0/webex_meetings_4021014/
https://www.reddit.com/r/PDQDeploy/comments/fofd73/webex_teams_30151310/
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
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"