tis-zoom icon

Zoom Client

Silent install package for Zoom Client

6.7.5.30439-19
Messaging
Messaging

tis-zoom

This package allows the installation of the Zoom application. It is a video conferencing application that enables live audio and video meetings, webinars, screen sharing, real-time chat, and virtual events.

  • package: tis-zoom
  • name: Zoom Client
  • version: 6.7.5.30439-19
  • 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: windows
  • impacted_process: Zoom
  • architecture: x64
  • signature_date:
  • size: 178.40 Mo
  • installed_size: 348.84 Mo
  • homepage : https://zoom.us/

package           : tis-zoom
version           : 6.7.5.30439-19
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         : windows
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      : 9b64c698-c5d1-4b20-85cc-aafb619e8a9b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.zoom.us/hc/en-us/sections/360008531132-Zoom-Releases-By-Date
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : eb12991e7b7d395bc3953c9992a17467c5a9fc99c6318c69f4d84f8ac844a3a1
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-02-17T12:12:54.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         : BcZuDxYFh6bJ0TBr7NRM2mN+ube2T1E0NVT8k86rWfyU14FUQUMttK5jKxBAlREaoE9g+e09Z1wgkBx4XVx4hDKrbOZUGBkmn+/lu+1QC5dy0D2SiewYiEOXGQdkGrqu1tKbWjCX+n/gcW/SQobfoh6hHZH057MxjNUhRw/oVlbacGzxLAQ5MdK7iPoUiktxzOhKo8Faqm7pkNiDRAFpk0ovDG1+Vj7dFYspZNvbsFjMzr9+uiHtXMr0p+8X4r/2dt12PlWlsAujtV+44LWy7IyIOkYelWLafFpIuvzfp1nkh1xsOV06QfjGSwcQTQMcLw/LhDNnTKuo7XY0BsFxtQ==

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

"""
{
    "key":"{E74A40B7-7C5F-422D-A2A5-769243C4BCB2}",
    "name":"Zoom Workplace (64-bit)",
    "version":"6.7.26346",
    "install_date":"2026-02-09 00:00:00",
    "install_location":"",
    "uninstall_string":"MsiExec.exe /X{E74A40B7-7C5F-422D-A2A5-769243C4BCB2}",
    "publisher":"Zoom",
    "system_component":0,
    "win64":true
}
{
    "key":"{53F158D1-567B-4F52-9BFA-DD2D5544AFD1}",
    "name":"Zoom Workplace (ARM64)",
    "version":"6.7.26346",
    "install_date":"2026-02-09 00:00:00",
    "install_location":"",
    "uninstall_string":"MsiExec.exe /X{53F158D1-567B-4F52-9BFA-DD2D5544AFD1}",
    "publisher":"Zoom",
    "system_component":0,
    "win64":true
}

Installation procedure: https://support.zoom.us/hc/articles/201362163-Mass-Installation-and-Configuration-for-Windows

"""
bin_name = "ZoomInstallerFull.msi"
silentflags = (
    'ZoomAutoUpdate=false ZNoDesktopShortCut=true ZoomAutoStart=false ZSILENTSTART=false ZConfig="DisableAdvancedSharingService=1;AddFWException=1"'
)

def get_app_path_version(key):
    if control.architecture in ["x64", "ARM64"]:
        app_path = makepath(programfiles, r"Zoom\bin\Zoom.exe")
    else:
        app_path = makepath(programfiles32, r"Zoom\bin\Zoom.exe")
    return get_file_properties(app_path)["FileVersion"]


def install():
    # Uninstalling the other architecture of the software
    if iswin64():
        for to_uninstall in installed_softwares(name='Zoom Workplace'):
            if '64-bit' not in to_uninstall['name']:
                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"])

    install_msi_if_needed(
        bin_name,
        name=r"Zoom Workplace \(64-bit\)",
        properties=silentflags,
        get_version=get_app_path_version,
        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

    if control.architecture == "x64":
        download_url = "https://zoom.us/client/latest/ZoomInstallerFull.msi?archType=x64"
    elif control.architecture == "arm64":
        download_url = "https://zoom.us/client/latest/ZoomInstallerFull.msi?archType=winarm64"
    else:
        download_url = "https://zoom.us/client/latest/ZoomInstallerFull.msi?archType=x86"

    # Getting latest version information from download url
    download_url = requests.head(download_url).headers["Location"]
    version = download_url.split("prod/")[1].split("/")[0]
    latest_bin = download_url.split("/")[-1]
    latest_bin_extension = latest_bin.rsplit('.', 1)[-1]

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # 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

181404d2e905e77073c08bfe1c7e384b6ac0b0613ee845087ad634555a073d42 : WAPT/README.md
d304c05533ab4048f626f3ea5976418ed0a26538918d5fd09d2b0658a7a61fb8 : WAPT/README_fr.md
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
92620807971d00a6eacf5f76dab89d305b22b8529c9366739893f924d352a8a1 : WAPT/changelog.txt
c62ebf98ed24b49b2c9604c9f4e66918871a98ddd6c40e23665ae5a4ece30458 : WAPT/control
eb12991e7b7d395bc3953c9992a17467c5a9fc99c6318c69f4d84f8ac844a3a1 : WAPT/icon.png
e864cce4773e0b5255c3b9d92d67930c5b73694c38c47d445fb1c616d7bfee4a : ZoomInstallerFull.msi
4d1811e9d451804faa92d3fb6802572dc525e701ee66fa24642fcf6f6062a3b0 : luti.json
3228feddb229bd019a3b4983fecbb78f3c321bf8c47ca2000d9ab37cf3d804ed : setup.py
b458386d8dfe46fa605ffe4243480158676b05e44d34b3565f48e52a4f8ed690 : update_package.py

https://support.zoom.us/hc/en-us/sections/360008531132-Zoom-Releases-By-Date
-16
===
only allow x64 on x64 systems


5.10.4.5035-13
===
Uninstalling the other architecture of the software


5.10.4.5035-11
===
Splitting windows package to archs
Improving overall windows package
min_wapt_version  : 2.0