Cisco Webex
Silent install package for Cisco Webex
46.5.0.35006-13
Media
Media
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-webex
- name: Cisco Webex
- version: 46.5.0.35006-13
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Flavien SCHELFAUT
- editor: Cisco WebEx Communications Inc
- licence: proprietary_restricted,wapt_public
- locale: all
- target_os: macos
- impacted_process: CiscoCollabHost
- architecture: arm
- signature_date:
- size: 220.61 Mo
- installed_size: 622.97 Mo
- homepage : https://www.webex.com/fr/index.html
package : tis-webex
version : 46.5.0.35006-13
architecture : arm
section : base
priority : optional
name : Cisco Webex
categories : Media
maintainer : WAPT Team,Tranquil IT,Flavien SCHELFAUT
description : Cisco Webex is an enterprise solution for video conferencing, online meetings, screen share, and webinars
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources :
installed_size : 622968832
impacted_process : CiscoCollabHost
description_fr : Cisco Webex est une solution d'entreprise pour les vidéoconférences, les réunions en ligne, le partage d'écran et les webinaires
description_pl : Cisco Webex to korporacyjne rozwiązanie do wideokonferencji, spotkań online, udostępniania ekranu i webinarów
description_de : Cisco Webex ist eine Unternehmenslösung für Videokonferenzen, Online-Meetings, Bildschirmfreigabe und Webinare
description_es : Cisco Webex es una solución empresarial para videoconferencias, reuniones en línea, pantalla compartida y seminarios web
description_pt : O Cisco Webex é uma solução empresarial para videoconferência, reuniões online, partilha de ecrã e webinars
description_it : Cisco Webex è una soluzione aziendale per videoconferenze, riunioni online, condivisione dello schermo e webinar
description_nl : Cisco Webex is een bedrijfsoplossing voor videovergaderen, online vergaderen, delen van schermen en webinars
description_ru : Cisco Webex - это корпоративное решение для видеоконференций, онлайн-совещаний, совместного использования экрана и вебинаров
audit_schedule :
editor : Cisco WebEx Communications Inc
keywords : meeting,screen,share,vidéo,conferencing
licence : proprietary_restricted,wapt_public
homepage : https://www.webex.com/fr/index.html
package_uuid : 8479cb09-2ba6-459a-bdec-48ffef339daa
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 90e267160ffd9d66793a1042b0c15f3fb7748e1ccda4a5410ea57ace5a527aba
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-05-27T15:09:02.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : FPKdpucofuXVgc1WHSFOBPLAdEKd0WSP1ARdku3DLygGdwXMZJXLBiBhVhD+kW221P17+kocCsTeYGj/gDd/P/5JoKBTNRi8F8d23CzEr4I3pNm14Zyvs2xWii0ohq4MCr7+Lxj2s3NG+6Fa9qFdmsCTjP7hUajGY4qTp94BdBd1oYe9qtkGIDUsSxX2bK8/viH5DKuEfE5+S759CWyqBTxTyc+pGYW5KPVkXCGQ3/kWgSFbsUu4OOn+pm4nSEjZpg5Wi1znM5EbZsTxwZR7UJwrbcqWwzeilh6LfLeSuNImTpKnDvQLgfxOldQA83hVlySXiYPZueMaFI1Q6fqRFQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_dmg(glob.glob("*.dmg")[0])
def uninstall():
remove_tree("/Applications/Webex.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
arch_dict = {
'x64': 'webex-macos-intel/Webex.dmg',
'arm': 'webex-macos-apple-silicon/Webex.dmg'
}
base_url = "https://binaries.webex.com/"
download_url = base_url + arch_dict[control.architecture]
latest_bin = download_url.rsplit('/', 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Download URL is: {download_url}")
if isfile(latest_bin):
remove_file(latest_bin)
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
print(f"Binary is present: {latest_bin}")
mounted_path = mount_dmg(latest_bin)
version = get_plist_obj(makepath(mounted_path, 'Webex.app', 'Contents', 'Info.plist'))["CFBundleShortVersionString"]
unmount_dmg(mounted_path)
print(f"Latest {app_name} version is: {version}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
c99c504fe542a8a0332f701e2204da859ca3d52af6440243abb2df47e2846f9d : WAPT/control
90e267160ffd9d66793a1042b0c15f3fb7748e1ccda4a5410ea57ace5a527aba : WAPT/icon.png
e879a991f120836eaf7a9d6e8548e8f07852e73092f8a2bf996615e3f3fd883a : Webex.dmg
ca5b47905e50c3502913a45deca1a7f4bdbbcc78d2d123e9798a111c6bc13167 : luti.json
279b21615c8da4c957aab3ee0b618c570891534966089230d44a546b64c3a3e6 : setup.py
c634b95c294b1bc5e9d09014f42d31ea5264615d2749488c914e72bd5e3b5011 : update_package.py