tis-zoom
5.17.5.31030-14
Enterprise video conferencing with real-time messaging and content sharing
47027 downloads
Download
See build result See VirusTotal scan

- package : tis-zoom
- name : Zoom Client
- version : 5.17.5.31030-14
- 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 : x86
- signature_date : 2024-01-28 08:00
- size : 102.98 Mo
- installed_size : 235.22 Mo
- homepage : https://zoom.us/
package : tis-zoom
version : 5.17.5.31030-14
architecture : x86
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 : cfad3aad-6364-4f1e-895b-9cab640c0af4
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 : DR/36OugQsAONMHsux83UUdKN5/hGeb0WIXRZXtGyA+EpVOcH9ygdbd6Ufxn3YQ5JW7SLJpnk0X4PwMqd9iIpqWZFh6qPbFjIgKXoxRJPequ8OoPOvbwRMlRw7HQQob49uGZD2sNNpoR04vJ+7psPoB4ec0+wvZjafWnSw8PgIlEyztL8gVtfp1qSHwh5Ry3nviURub2AOjCWEzFQjq/ByAWKYhANs6mpFG0WiFj0gnFD3Q3lbxZ2DU6TZt81RMrd+vKmrCKyWe3jGEVZXLuIi3bs0WzDt0TqCttswGRyVIOztuRAo47ROnpsdG3+MIVIH3emp37a/eIRucPCh43Kg==
signature_date : 2024-01-28T08:00:25.221603
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"]:
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
253fe0b289e2abb480319dc7320ced812530a466c2249bda0f22b5a6a491ae6f : setup.py
: __pycache__
6b17262fd68976d888286c71ab61f76f31e52fe9af180a07e10ed7646efbe676 : update_package.py
0060ec09ee6f68fec85d21f9fa03a4ba8120ac986cba4fa126ba11d7a5abf6db : ZoomInstallerFull.msi
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
18864c6c29bd6f55ae61abdebf70d9419b23bb82ecba92707626113fbb5a4bf4 : WAPT/changelog.txt
6ef5cbac155764aefc5126098815078de69d009c2a5bab71ba7a53d9b4082a1c : luti.json
1690aefa0af4adc303ee988b1d7bec5cd4a3b87c4668068748e976f34aed41b4 : WAPT/control
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