tis-zoom

5.17.1.28914-15
Enterprise video conferencing with real-time messaging and content sharing
47027 downloads
Download
See build result See VirusTotal scan
tis-zoom icon
  • package : tis-zoom
  • name : Zoom Client
  • version : 5.17.1.28914-15
  • categories : Messaging
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor : Zoom Video Communications, Inc.
  • licence : Proprietary
  • locale : all
  • target_os : windows
  • impacted_process : Zoom,ZoomDocConverter,ZoomOutlookIMPlugin,Zoom_launcher,zTscoder,zUpdater,zWebview2Agent,zCrashReport64,zCrashReport,
  • architecture : all
  • signature_date : 2024-01-01 09:00
  • size : 102.75 Mo
  • installed_size : 235.22 Mo
  • homepage : https://zoom.us/
package           : tis-zoom
version           : 5.17.1.28914-15
architecture      : all
section           : base
priority          : optional
name              : Zoom Client
categories        : Messaging
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Enterprise video conferencing with real-time messaging and content sharing
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://zoom.us/download
installed_size    : 235220992
impacted_process  : Zoom,ZoomDocConverter,ZoomOutlookIMPlugin,Zoom_launcher,zTscoder,zUpdater,zWebview2Agent,zCrashReport64,zCrashReport,
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
homepage          : https://zoom.us/
package_uuid      : 42767af8-f51f-4a30-908f-e4ee4b5ed7f7
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.zoom.us/hc/en-us/sections/360008531132-Zoom-Releases-By-Date
min_os_version    : 5.1
max_os_version    : 
icon_sha256sum    : 07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : cEWyXbyNjmkBgcM8zFkMCSsEOdGXSqAqMc8Qc5wWMW8q5mf0JCCpXHYQFaw+LiKRb7uXqjdWfgAizsTFbxTv/2NP2h/TNNxDUg3Pf2uuJ5cIF0VmlmleKijb5YotY3Hls30VoF7ynX5VDolGV70egSdRQICwbPy4gzapAa4ZVO+9gT2SNrMiHC7Ysne2R63BbCAHTlFhurMiptfLAR0uF5jWd225s8Mv5XnRWnucouFBPmEuats74n3Gal1frcV7j/YuDZbQ4rH+2T40fJCFhy7tQPuYP4wjc0nsWwsjMvkK5vVqc5rZZeUKMapxz2KEczJHc/W+Rie/fFFsv8uQeQ==
signature_date    : 2024-01-01T09:00:07.998674
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
# -*- coding: utf-8 -*-
from setuphelpers import *


r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

UninstallKey                           Software                                                              Version             Uninstallstring
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
{3EA2FA1B-2AAD-4DB6-9340-F37C517ACB6E} Zoom(32bit)                                                           5.10.5263           MsiExec.exe /X{3EA2FA1B-2AAD-4DB6-9340-F37C517ACB6E}
{10F9C1AD-E615-47A6-B3E6-A66308D01F65} Zoom(64bit)                                                           5.10.5035           MsiExec.exe /X{10F9C1AD-E615-47A6-B3E6-A66308D01F65}

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

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
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 == "x64":
        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():
    # Declaring local variables
    package_version = control.get_software_version()
    if control.architecture == "x64":
        install_x86_app_arch = False
    else:
        install_x86_app_arch = True

    # Uninstalling the other architecture of the software
    if iswin64():
        for to_uninstall in installed_softwares(name="Zoom \("):
            if install_x86_app_arch == to_uninstall["win64"] or windows_version() < Version("6.2"):
                print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
                killalltasks(control.impacted_process.split(","))
                run(uninstall_cmd(to_uninstall["key"]))
                wait_uninstallkey_absent(to_uninstall["key"])

    # Installing the software
    print("Installing: %s (%s)" % (get_msi_properties(bin_name)["ProductName"], package_version))
    install_msi_if_needed(
        bin_name,
        properties=silentflags,
        min_version=package_version,
        get_version=get_app_path_version,
    )
# -*- coding: utf-8 -*-
from setuphelpers import *
import requests
import msilib

bin_name = "ZoomInstallerFull.msi"
url_dl = "https://www.zoom.us/client/latest/ZoomInstallerFull.msi"


def get_zoom_product_version(msi_filename):
    # Get version from description msi
    db = msilib.OpenDatabase(msi_filename, msilib.MSIDBOPEN_READONLY)
    db.GetSummaryInformation(1)
    description = db.GetSummaryInformation(1).GetProperty(6)
    return ensure_unicode(description).replace(" (", ".").split(")")[0]


def update_package():
    # Declaring local variables
    result = 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"
    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, allow_redirects=False).headers["Location"]
    version = download_url.split("prod/")[1].split("/")[0]
    latest_bin = download_url.split("/")[-1]

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    if Version(get_zoom_product_version(latest_bin)) != Version(version):
        remove_file(latest_bin)
        error("The version returned by the request and the version returned by the msi does not match")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return result
275502f74e25b32322b0b98de1012d35ce91473a6e69a694713c2b23e99a9a20 : setup.py
 : __pycache__
09e5e07c63f4dfcd92382d63afe35926f202086b724a56b11e51475ad3aeeec0 : update_package.py
e55c7e975aeba37c23f121107c17b447db2cd87d7b593bdc8240ef182b111498 : ZoomInstallerFull.msi
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
2240e25027218de409834bb34404c8d24f2dd8b3d9e33a42b1198946672138d3 : WAPT/changelog.txt
f604413c3db01401182c7427befbd9fec4a5d53ac0139db9bf1041adb5ef1847 : luti.json
6286f7ed5886c1ad22d0a6ab1d3934609d46aa601253766f537336f9a2893ab7 : WAPT/control
5.16.6.24712-15
Added a windows version check for windows 7, uninstall existing zoom app when on windows 7

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