tis-webex-teams icon

Cisco Webex Teams

Silent install package for Cisco Webex Teams

45.11.0.33435-15
Media
Media

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-webex-teams
  • name: Cisco Webex Teams
  • version: 45.11.0.33435-15
  • categories: Media
  • maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Clément Baziret,Jordan ARNAUD
  • editor: Cisco WebEx Communications Inc
  • licence: proprietary_restricted,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: webex,ptoneclk,webexmta,CiscoWebexImporting,CiscoWebexWebService,wbxreport,wbxdmsupload,wbxreport_tsp,webexAppLauncher,CiscoCollabHost.exe
  • architecture: x64
  • signature_date:
  • size: 267.26 Mo
  • installed_size: 311.00 Mo
  • homepage : https://www.webex.com/fr/index.html

package           : tis-webex-teams
version           : 45.11.0.33435-15
architecture      : x64
section           : base
priority          : optional
name              : Cisco Webex Teams
categories        : Media
maintainer        : WAPT Team,Tranquil IT,Kenan KILICARSLAN,Clément Baziret,Jordan ARNAUD
description       : Webex Teams is a team collaboration application. Access screen sharing, group messaging, cross collaboration tools and application integrations
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://akamaicdn.webex.com/client/webexapp.msi
installed_size    : 311000000
impacted_process  : webex,ptoneclk,webexmta,CiscoWebexImporting,CiscoWebexWebService,wbxreport,wbxdmsupload,wbxreport_tsp,webexAppLauncher,CiscoCollabHost.exe
description_fr    : Webex Teams est une application de collaboration en équipe. Accédez au partage d'écran, à la messagerie de groupe, aux outils de collaboration croisée et aux intégrations d'applications
description_pl    : Webex Teams to aplikacja do współpracy zespołowej. Zapewnia dostęp do funkcji udostępniania ekranu, wiadomości grupowych, narzędzi do współpracy i integracji aplikacji
description_de    : Webex Teams ist eine Anwendung für die Zusammenarbeit im Team. Zugriff auf Bildschirmfreigabe, Gruppennachrichten, Tools für die Zusammenarbeit und Anwendungsintegrationen
description_es    : Webex Teams es una aplicación de colaboración en equipo. Acceda a pantalla compartida, mensajería de grupo, herramientas de colaboración cruzada e integraciones de aplicaciones
description_pt    : O Webex Teams é uma aplicação de colaboração em equipa. Aceda à partilha de ecrã, às mensagens de grupo, às ferramentas de colaboração cruzada e às integrações de aplicações
description_it    : Webex Teams è un'applicazione per la collaborazione di gruppo. Accesso alla condivisione dello schermo, alla messaggistica di gruppo, agli strumenti di collaborazione incrociata e alle integrazioni di applicazioni
description_nl    : Webex Teams is een toepassing voor teamsamenwerking. Toegang tot scherm delen, groepsberichten, tools voor onderlinge samenwerking en applicatie-integraties
description_ru    : Webex Teams - это приложение для совместной работы. Доступ к обмену экранами, групповым сообщениям, инструментам для совместной работы и интеграции приложений
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      : 9e58d532-08de-4a35-bcd8-b25b7b530379
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.10240
max_os_version    : 
icon_sha256sum    : 4f3fb943631621ab2a7ccace4e2419b27e77cdd8d59338be374635c45aaa5b27
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-04T19:27:58.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         : CeK4Bx7OI2iy+W+iRIefF4UdjvAdqN5QFvM8QMqqPJ6aTp/SUOEWDVH9ZfcOQjJFE00GEttL2uNWx3mNCPHJI9Ail07Q7upu7mkEXMwbP6mnAlGo4msHmL6u7JUoL669px64NRTUzh5j0vCbUaUnG/uB3liTOfyXHHOfMegDSOKTNJRaRGPWRibcmYbytt8r5SoecxXJCFguobVwLZSUAQzaj6KEFN0KO7lY6aoeLa8FdK6eBAz+LzCVGLH8To+KsbD6hH+PmitAEQ7B6Q9pgjbjJCb882Trd3REN0Atj0/7cfBOBwTH14J511hbE9ZmCIymydCfkTpDt8Lp3FofyQ==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("webex.msi")[0]
  
    for soft in installed_softwares('webex'):
        if 'Cisco Spark' in soft['install_location'] and "systemprofile\\AppData" in soft['install_location']:
            run(uninstall_cmd(soft['key']))

    for soft in installed_softwares('webex'):
        if 'Cisco Spark' in soft['install_location'] :
            if Version(soft['version']) < Version(control.get_software_version()):
                run(uninstall_cmd(soft['key']))            
    
    install_msi_if_needed(
        bin_name,
        timeout=600,
        name="^Webex$",
        properties={"ALLUSERS":1}
    )

    uninstallkey.clear()

    for soft in installed_softwares('webex'):
        if 'Cisco Spark' in soft['install_location']:
            uninstallkey.append(soft['key'])

# -*- coding: utf-8 -*-
from setuphelpers import *

bin_name = "webex.msi"


def update_package():
    print("Download/Update package content from upstream binary sources")

    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    dl_url = "https://binaries.webex.com/WebexOfclDesktop-Win-64-Gold/Webex.msi"

    # download binary
    if isfile(bin_name):
        print("removing old binary !")
        remove_file(bin_name)

    print("downloading binary")
    wget(dl_url, bin_name, proxies=proxies)

    version = get_version_from_binary(bin_name)

    # Changing version of the package
    control.version = "%s-%s" % (version, int(control.version.split("-")[-1]))
    control.save_control_to_wapt()
    print("Changing package version to: %s in WAPT\\control" % control.version)

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 : WAPT/changelog.txt
f8b7c733baa86164ea131adc9c34fd1e257cccf9ec6c0ff8fdd565347bc83147 : WAPT/control
4f3fb943631621ab2a7ccace4e2419b27e77cdd8d59338be374635c45aaa5b27 : WAPT/icon.png
50cba949546ab98ed8c8c80d367cc68e67fe18b08018ccf0db2fd87133373525 : luti.json
5f8a498f394da98ad37083cd72f0a590a6dcb814491ec822ea7627c6c3484a5f : setup.py
3965f5556053779e82aa7df30a8726398f0c738a37663e99e83e1999d27b85cb : update_package.py
2b56dad89c6f6c62040be166259bc5cb6d913e2e6efb118c91215f5f85ff6e5f : webex.msi