tis-vonage-business icon

Vonage Business

Silent install package for Vonage Business

2.25.0.0-1
Utilities
Utilities

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • 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          : PREPROD
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      : 811af071-1dd9-459e-8375-f262c1bef943
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d5a298a06b38a519ead18a19b4934f7edd964f000de8d47795b55fb5462f9dd5
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-20T14:01:18.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         : PhQ1egb2jSYb2u+Cbn/uMTFSta5yqCTVVa/+G6whcW+JdYvG70ksZY7f7cmEgbBWvLu40kJQkw7E/sbliQzQ4lcdVaaIS6McvOd0sHH9dCnwuRcIi20BmXLShXKMEiQfzHJgwej3FjBqzafJ2fsHc/+lYdsHD7FhH+nFJcSMD7oJfgpIDxucX/3b6MrAHjpsULTovo3/q8+zBu1W9O6eiv+3j7id5sw1D3mctWd7emhMnm9OkCSL93ZRDkZMJuGjIQ57gxV8pmB2cNrVAOxIyO6RA46QT5fU0EjY3Z7OR/mAx03slTR75AAXZGWCTKaxwdBEc0DWdUDuS1CChae7qQ==

# -*- 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
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
22303671a86fac42fa5b5c097739b4386b86c38eb54243514391dd2a4458fa8e : WAPT/control
d5a298a06b38a519ead18a19b4934f7edd964f000de8d47795b55fb5462f9dd5 : WAPT/icon.png
2c3ffa395f19bd1ed19d00f2f3c4121fdf29ad467dfb385974a72cbb267c5219 : luti.json
8a6a44012a155bba55b5a4487ea2bb9ea78701fbcae41209ac587b5656d56784 : setup.py
96303c7ec015dee5e23437e13039578d36c47c98fc5f86c3cb3704b6db8bae4e : update_package.py