Zoom Client
Paquet d’installation silencieuse pour Zoom Client
6.7.6.75444-21
Messaging
Messaging
- package: tis-zoom
- name: Zoom Client
- version: 6.7.6.75444-21
- 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: x64
- signature_date:
- size: 192.75 Mo
- installed_size: 348.84 Mo
- homepage : https://zoom.us/
package : tis-zoom
version : 6.7.6.75444-21
architecture : x64
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 : PROD
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 : c0ec67c7-38e7-4ea7-9a09-daa8c85d28ec
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 : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-02-21T15:05:32.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 : Olj4HT+KPJglBlMxBNJyzhAvSgWOQCWcQZm9BxSuRaoONG/7th7utG2UgtJXV0kfpF/BVIOO2vmb77nXPfZ+uOizQ790H+wm4v6dfgj4kkY1/0zNPf2XdHVrQNuOydacfANonRLyL/mwlo4SCurHavOd+W0Aq3A2A86l8l6VEOMvzoHtr/ZH24xrEt0wOY9+yudfpWWqkFyUodjdJsxNbS/ckFm7jRi9NiMuPYK4f2+5aMjMBn2fyCeVCBn8310Sq5zszX/vi9hikRs8/q8tCnyNVxdYwcKDvXUvY3HZgfXo6Bp174CjBpzq2IgGg+VqGNlLX74qn2XnEofILQYr1g==
# -*- 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"]["zoom"]["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"
version = url_dl.split("/")[-2]
wget(url_dl, "Zoom.pkg", proxies=proxy)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
30323a2971e65a8ae41350d6c9f7f7ecce19064a1643fb9ac4644d572feba796 : WAPT/control
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
30337227fc3b600d9f6816ef47043e00dac3e8f0a3290664d562d8ff6141b00f : Zoom.pkg
ad3edbb66881b1c9a241a38610da1b16e2cd51c0ea82999e7db7ef97822df7e1 : luti.json
e740eaf847af684c0384ced4fdeb9c4542669ac8598412526a0187180f863a11 : setup.py
ecefc82b48141b33aa5f90f7c8fa3ead7c2fd75f75a2e6a77e0b45bc6e3b86f1 : update_package.py