Vonage Business
Paquet d’installation silencieuse pour Vonage Business
2.25.2.0-1
Utilities
Utilities
- package: tis-vonage-business
- name: Vonage Business
- version: 2.25.2.0-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 131.15 Mo
package : tis-vonage-business
version : 2.25.2.0-1
architecture : x64
section : base
priority : optional
name : Vonage Business
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : Vonage is an API platform that enables companies to create communication experiences for their customers
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Vonage est une plateforme API qui permet aux entreprises de créer des expériences de communication pour leurs clients
description_pl : Vonage to platforma API, która umożliwia firmom tworzenie doświadczeń komunikacyjnych dla swoich klientów
description_de : Vonage ist eine API-Plattform, die es Unternehmen ermöglicht, Kommunikationserlebnisse für ihre Kunden zu schaffen
description_es : Vonage es una plataforma API que permite a las empresas crear experiencias de comunicación para sus clientes
description_pt : A Vonage é uma plataforma API que permite às empresas criar experiências de comunicação para os seus clientes
description_it : Vonage è una piattaforma API che consente alle aziende di creare esperienze di comunicazione per i propri clienti
description_nl : Vonage is een API-platform waarmee bedrijven communicatie-ervaringen voor hun klanten kunnen creëren
description_ru : Vonage - это платформа API, которая позволяет компаниям создавать коммуникационные возможности для своих клиентов
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage :
package_uuid : ea0ca87f-64e3-4dbc-80e8-ee3760170b4a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : d5a298a06b38a519ead18a19b4934f7edd964f000de8d47795b55fb5462f9dd5
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-02-22T13:27:23.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 : oIbhlPGhTX71oLOea1NCfqlaiMycXyQsZnd6eEoz1Y4+SwY3bZ4v8R7+J/YNOKrhwYg93HU/A+8cAVKt3zV1ypVSydFHSUMAIhOQLu+pNCv4J78aB9Z5GrMZpxTBNKIVEfrCd8WFQ+JxmlNbQWBX4fSBPNM5mkLICfCsLKY4S2QNBJccGMM/h4XGr3JWFaeF8GKm7dG3S69RvatPbbV5esfojR78Cm0OSk9YuBxaCfDxHLUHW3xXZIX/IXuLEnOtZF/oTglsfu/E574lQXxNbTABERR3QP6PzS1m6jeWwpbBquYnapemYfUgsTazjTdOxfMVODXaxvCB5IvO8PybKg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_msi_if_needed("VonageBusinessSetupPerMachine.msi")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://s3.amazonaws.com/vbcdesktop.vonage.com/prod/win/VonageBusinessSetupPerMachine.msi"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
46bc40b0bb6c1a24e13cde08e15091f10a9312b2bdcc935cd7e6f1fbc0e1b3f5 : VonageBusinessSetupPerMachine.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
42828732e59c5087575c93b910e4bc7e2aff4224cf3e1d491a239ae7ad39ae03 : WAPT/control
d5a298a06b38a519ead18a19b4934f7edd964f000de8d47795b55fb5462f9dd5 : WAPT/icon.png
1dd8c7a31eda8f580a95b7c06c9955a4e9c04e671e5a31766edb092e3e15feab : luti.json
8a6a44012a155bba55b5a4487ea2bb9ea78701fbcae41209ac587b5656d56784 : setup.py
96303c7ec015dee5e23437e13039578d36c47c98fc5f86c3cb3704b6db8bae4e : update_package.py