tis-webex icon

Cisco Webex

Paquet d’installation silencieuse pour Cisco Webex

46.3.1.34493-13
Media
Media

  • package: tis-webex
  • name: Cisco Webex
  • version: 46.3.1.34493-13
  • categories: Media
  • maintainer: WAPT Team,Tranquil IT,Flavien SCHELFAUT
  • editor: Cisco WebEx Communications Inc
  • licence: proprietary_restricted,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: CiscoCollabHost
  • architecture: x64
  • signature_date:
  • size: 241.60 Mo
  • installed_size: 622.97 Mo
  • homepage : https://www.webex.com/fr/index.html
  • depends:

package           : tis-webex
version           : 46.3.1.34493-13
architecture      : x64
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           : tis-webview2
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://binaries.webex.com/WebexTeamsDesktop-Windows-Gold/Webex.msi
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      : a098a81f-35fd-44a7-ad26-3ddef136cdb3
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10
max_os_version    : 
icon_sha256sum    : 90e267160ffd9d66793a1042b0c15f3fb7748e1ccda4a5410ea57ace5a527aba
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-03-30T11:06:44.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         : Co/I1VQm1uLZUuWLVbzwwh0AQU/+W9m8kJNDPCz0OKsi+QJlVLJM17G2DRzkAPW/bGmxZTA/+WmO+0cY8sZkuAcNVDJJcvXS0p0xpAvz7+9AHdNeeEk5EhoD81sk7DQKD4OuXrd7NXAb7p8sNlJY5uauLkwk1IsoavGWXXxtpwzPNV6vxTfwQQVrvnP+2RbDyYt4jATehqarf6yE/M3k3YITiwGJzQlR9TjkY9E7iuLaDRqoPiUbjweij5KkaxoNhTY7XrejOmn2KRWm5pr1pLGzIa9ef2twhFBV71ViwSwUUthbGat4RRK6uLgmoreuEcr0dkbQCaBQ8tVf/XHK6A==

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


def install():
    # Initializing variables
    bin_name = glob.glob('Webex*.msi')[0]

    # Uninstalling older versions of the software that can remain
    for to_uninstall in installed_softwares(name="^Cisco Webex Meetings$"):
        print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
        killalltasks(ensure_list(control.impacted_process))
        run(uninstall_cmd(to_uninstall["key"]))
        wait_uninstallkey_absent(to_uninstall["key"])


    properties = {
        'ACCEPT_EULA': 'TRUE',
        'ALLUSERS': 1,
        'INSTALLWV2': 0,
        'AUTOSTART_WITH_WINDOWS': 0
        # 'DELETEUSERDATA': 0,
        # 'ENABLEOUTLOOKINTEGRATION': 0,
    }

    install_msi_if_needed(
        bin_name,
        name="^Webex$",
        properties=properties,
        min_version=control.get_software_version()
    )

# -*- 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

    url_dict = { 
        'x64': 'WebexOfclDesktop-Win-64-Gold/Webex.msi', 
        'arm64': 'WebexOfclDesktop-Win-Arm-64-Gold/Webex.msi' 
    }
    base_url = "https://binaries.webex.com/"
    download_url = base_url + url_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}")

    version = get_version_from_binary(latest_bin)
    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

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e0f0e1e09c0c8e0f4d27c9e9c3ed729dcca132a526e8071511f431288a7608ee : WAPT/control
90e267160ffd9d66793a1042b0c15f3fb7748e1ccda4a5410ea57ace5a527aba : WAPT/icon.png
dcc7b2636d0df902a646543ec64ef365a063b810a7687e27dc6fa993ac2223d8 : Webex.msi
e4fe0747508781714467b9eb53d88ae9c761d7e98306bc442962e360bd5909b1 : luti.json
e3c2e34899beed8f107e25127734f3de958dbb88a54261352d38a51c5ff9f2f4 : setup.py
506fb75561c5bb9bccc42afa54ec906f7c23d778264a024c0988254663156bc9 : update_package.py