tis-zoom icon

Zoom Client

Paquet d’installation silencieuse pour Zoom Client

7.0.0.77593-17
Messaging
Messaging

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-zoom
  • name: Zoom Client
  • version: 7.0.0.77593-17
  • categories: Messaging
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
  • editor: Zoom Video Communications, Inc.
  • licence: proprietary_free,wapt_public
  • locale: all
  • target_os: darwin
  • impacted_process: Zoom
  • architecture: arm
  • signature_date:
  • size: 186.23 Mo
  • installed_size: 348.84 Mo
  • homepage : https://zoom.us/

package           : tis-zoom
version           : 7.0.0.77593-17
architecture      : arm
section           : base
priority          : optional
name              : Zoom Client
categories        : Messaging
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
description       : Enterprise video conferencing with real-time messaging and content sharing
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.3
sources           : https://zoom.us/download
installed_size    : 348838866
impacted_process  : Zoom
description_fr    : Une visioconférence d'entreprise avec messagerie et partage de contenu en temps réel
description_pl    : Wideokonferencje korporacyjne z przesyłaniem wiadomości w czasie rzeczywistym i udostępnianiem treści
description_de    : Videokonferenzen für Unternehmen mit Messaging und Content Sharing in Echtzeit
description_es    : Videoconferencias para empresas con mensajería en tiempo real y compartición de contenidos
description_pt    : Videoconferência empresarial com mensagens em tempo real e partilha de conteúdos
description_it    : Videoconferenze aziendali con messaggistica e condivisione di contenuti in tempo reale
description_nl    : Enterprise-videoconferencing met real-time messaging en het delen van inhoud
description_ru    : Корпоративные видеоконференции с обменом сообщениями и контентом в режиме реального времени
audit_schedule    : 
editor            : Zoom Video Communications, Inc.
keywords          : zoom,video,conferencing,messaging
licence           : proprietary_free,wapt_public
homepage          : https://zoom.us/
package_uuid      : eaa7850d-4758-42d0-bc3b-9d2e65b56ecd
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.zoom.us/hc/en-us/sections/360008531132-Zoom-Releases-By-Date
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-03-24T14:31:52.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         : N96ENVT56qHhv8M54Q+3xKwm7D4ax13g6heuqsz5inmIbtoYqWbdiWpcr2701ieqx9IXsNHcr6e1BtGiRr2J1HEMEXKvJUBXxfVseebHuA1QoLGpQwLzogRcR6TDu6WqRVi7sjXm0jNKLoWaBGha8nS96r4kU8pJMFaObxFdeqPgZFf3a2oos48/8IZjf0gLFJ0K+mtqLtOp9lSO9xcoFZibKEZZyBbx2ShEuR+dkigA3OBCB5pKZ8LEE9gktTDPj91129sK9N7CwA+g9ePeDjSdHmYF/XBfUSeXffjkAaZLiE5H8QHNeqEVaT+GRt9a9ZeNhfB3DEiwQBZHwj6oUA==

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


def install():
    run(f'pkgutil --expand-full Zoom.pkg Zoom')
    install_app(
        "Zoom/zoomus.pkg/Payload/zoom.us.app",
        key="/Applications/zoom.us.app",
        min_version=control.get_software_version(),
        get_version=get_version
    )

def uninstall():
    uninstall_app("zoom.us.app")
    uninstall_pkg("us.zoom.pkg.videomeeting")


def get_version(key):
    import re
    version = key['version']
    version = version.replace(' ', '.')
    version = re.sub('[()]', '', version)
    return str(version)

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

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

    # Getting proxy informations from WAPT settings
    proxy = get_proxies_from_wapt_console()

    json_version = wgets("https://zoom.us/rest/download?os=mac",proxies=proxy,as_json=True)
    version = json_version["result"]["downloadVO"]["zoomArm64"]["version"]
    
    # Downloading latest binaries
    if isfile("Zoom.pkg"):
        remove_file("Zoom.pkg")

    print("Downloading: " + "Zoom.pkg")
    
    url_dl = f"https://zoom.us/client/{version}/zoomusInstallerFull.pkg?archType=arm64"
    version = url_dl.split("/")[-2]

    wget(url_dl, "Zoom.pkg", proxies=proxy)
    
    control.set_software_version(version)
    control.save_control_to_wapt()

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
4c381896f8211e60d5da219911f3843ecb209464ed695f2efffedeac254707a3 : WAPT/control
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
61251a33c6002478a09b833d5b7e3f6c3d7ae0cf1ffe16e1b5c987c94c05376d : Zoom.pkg
bf62affa2b56d7da9c4de3e5158dce4ffabcf32d7af3aa7674be6a28ecd73cb5 : luti.json
e740eaf847af684c0384ced4fdeb9c4542669ac8598412526a0187180f863a11 : setup.py
37740be98df1871f64709ac27b2fed4ca8b9a480f1305e8af9b573b75c5d669d : update_package.py