Vonage Business
Silent install package for Vonage Business
2.25.0.0-1
Utilities
Utilities
- package: tis-vonage-business
- name: Vonage Business
- version: 2.25.0.0-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 130.42 Mo
package : tis-vonage-business
version : 2.25.0.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 : e402aaac-4e6d-4d14-b5f5-a2cdc6485d1e
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 : 2025-11-25T16:25:14.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 : HxYsp1dt5kozguxTl0LT83CEDYbA/LrxKjA35aDMVSfA1BmcOAt9ZSqdqWOHcXfiMGyLTj2a1AubCuL+LcGw9u6438Pc1iB76bkZ4FyJqiqhOqF4MnQYI9BMLJkuGbFnpTA2K3JLFpX2s4Fx2kwUx2PGpXopnaS7chtxdwNel8rlw+egX5TPriY7ur6ZykMLw2n+3QV3QJZcVaH+2cpUwKIo22rOtbBxqoRjtZjJeE8qbFfJp10B0HqGqUD8LK4YOVqCCSCVOAutHSOfqttdgduHoqm4eE8+1+5Fz5nb8cwjiOYscJp1AFYVhw2xWD4r+o1GZ/U+E4PsST1BAarUBA==
# -*- 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()
10c0c7ad4c1d04498727bba6296ab969dd2b10b9bcbe9c523932c2c1e3c875e0 : VonageBusinessSetupPerMachine.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b9920a0f75f9aa5feb0e7571e74b792cae6adb10e30f156c976931353404bf79 : WAPT/control
d5a298a06b38a519ead18a19b4934f7edd964f000de8d47795b55fb5462f9dd5 : WAPT/icon.png
2c3ffa395f19bd1ed19d00f2f3c4121fdf29ad467dfb385974a72cbb267c5219 : luti.json
8a6a44012a155bba55b5a4487ea2bb9ea78701fbcae41209ac587b5656d56784 : setup.py
96303c7ec015dee5e23437e13039578d36c47c98fc5f86c3cb3704b6db8bae4e : update_package.py