genesys-cloud
Silent install package for genesys-cloud
2.52.919-0
Utilities
Utilities
- package: tis-genesys-cloud
- name: genesys-cloud
- version: 2.52.919-0
- categories: Utilities
- maintainer: Tranquil IT, Kevin Cherel
- editor: Amazon Web Services (AWS)
- licence: ©
- target_os: windows
- architecture: x64
- signature_date:
- size: 144.02 Mo
- installed_size: 45.75 Mo
- homepage : https://www.genesys.com
- depends:
package : tis-genesys-cloud
version : 2.52.919-0
architecture : x64
section : base
priority : optional
name : genesys-cloud
categories : Utilities
maintainer : Tranquil IT, Kevin Cherel
description : Genesys Cloud is a cloud-based contact center platform that centralizes omnichannel customer interactions and optimizes their management through AI and automation.
depends : tis-dotnetfx4.8, tis-vcredist2015-2022
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources : https://apps.mypurecloud.com/directory-windows/msi/
installed_size : 45750000
impacted_process :
description_fr : Genesys Cloud est une plateforme cloud de centre de contact qui centralise les interactions clients omnicanales et optimise leur gestion grâce à l’IA et à l’automatisation.
description_pl : Genesys Cloud to chmurowa platforma contact center, która centralizuje wielokanałowe interakcje z klientami i optymalizuje ich obsługę dzięki sztucznej inteligencji i automatyzacji.
description_de : Genesys Cloud ist eine cloudbasierte Contact-Center-Plattform, die Omnichannel-Kundeninteraktionen zentralisiert und deren Verwaltung durch KI und Automatisierung optimiert.
description_es : Genesys Cloud es una plataforma de centro de contacto en la nube que centraliza las interacciones omnicanal con los clientes y optimiza su gestión mediante IA y automatización.
description_pt : O Genesys Cloud é uma plataforma de contact center na nuvem que centraliza as interações omnicanal com os clientes e otimiza sua gestão por meio de IA e automação.
description_it : Genesys Cloud è una piattaforma di contact center basata sul cloud che centralizza le interazioni omnicanale con i clienti e ne ottimizza la gestione tramite IA e automazione.
description_nl : Genesys Cloud is een cloudgebaseerd contactcenterplatform dat omnichannel klantinteracties centraliseert en het beheer ervan optimaliseert met behulp van AI en automatisering.
description_ru : Genesys Cloud — это облачная платформа контакт-центра, которая централизует омниканальное взаимодействие с клиентами и оптимизирует его управление с помощью ИИ и автоматизации.audit_schedule :
audit_schedule :
editor : Amazon Web Services (AWS)
keywords :
licence : ©
homepage : https://www.genesys.com
package_uuid : ad796295-d86a-40c7-9d26-52c5fd4e3ae2
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0.22000
max_os_version :
icon_sha256sum : 2ee33ff76c0d980cb0f3eae9a6743b103f8170ef98e04663cafe0b24ca078813
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-18T15:08:41.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 : OUWZXxAUfGh9R42BLPzs6taCAZemNfYZ8M9jTwJGCbZT8GI9PGQesRPTvTo6mGGxIpz4KbQXimstEBTeNv5TLvYXEzvgVqWf9nnP+BtAjMh2v1zWoM8pHR7WKIkbjkYKnL06osG6UNv0zFmvr7JV91X/+IDoVOEQk0mSp181HVc3ouLt+0FRFPkql8X8TMR4l6bo6x87r/l+2BZKmohemSjdn4m/70saP0h/JXPE0H2CF4+8CVX4ZhkJc0vEID5WKENp0b/GhhScQw2s5oI1Gx3ieIiWompQaQcfNM1yDc3BtkpniYtR5IOvdkxAB5AjQV49OKypIB7fwxHLzXv1OA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("genesys-cloud-windows*.msi")[0]
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url = "https://apps.mypurecloud.com/directory-windows/msi/"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "a", "href", proxies=proxies):
if bs_search["href"].endswith("x64.msi"):
version = bs_search["href"].split("-")[-2]
latest_bin = bs_search["href"].split("/")[-1]
# latest_bin = bin_contains + version
url_dl = bs_search["href"]
break
print("Latest %s version is: %s" % (control.name, version))
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
control.set_software_version(version)
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b5b02bed7dee3af11ab8abf467b413073c892e79f01f8b4c9f80c4b00ed0f97c : WAPT/control
2ee33ff76c0d980cb0f3eae9a6743b103f8170ef98e04663cafe0b24ca078813 : WAPT/icon.png
ee7c8a47b3e69bbabad8721c57a176cccaafa37923b236c41e4d499840557ba5 : genesys-cloud-windows-2.52.919-x64.msi
a762aa6d8c0f621da9d2ae02a3c1bc46e62ae66ba730ad357f2b3e6e50bb8978 : luti.json
e8083863c7eba5cac65255027406575d685e5b81f54fb223b88dfc8285e9fc03 : setup.py
4564101ce4024c85fbb4c12c78e91ac8c0b9e1854720afd63b4d133d8d63fb7e : update_package.py