
alfaview
Silent install package for alfaview
9.23.1.0-2
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-alfaview
- name: alfaview
- version: 9.23.1.0-2
- maintainer: Amel FRADJ
- licence: https://alfaview.com/en/pricing/
- target_os: windows
- impacted_process: alfaview
- architecture: x64
- signature_date:
- size: 76.03 Mo
- installed_size: 74.32 Mo
- homepage : https://alfaview.com/de/
package : tis-alfaview
version : 9.23.1.0-2
architecture : x64
section : base
priority : optional
name : alfaview
categories :
maintainer : Amel FRADJ
description : alfaview Video Conferencing Systems GmbH & Co. KG
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size : 74321920
impacted_process : alfaview
description_fr : alfaview Video Conferencing Systems GmbH & Co. KG
description_pl : alfaview Video Conferencing Systems GmbH & Co. KG
description_de : alfaview Video Conferencing Systems GmbH & Co. KG
description_es : Sistemas de videoconferencia alfaview GmbH & Co. KG
description_pt : alfaview Video Conferencing Systems GmbH & Co. KG
description_it : alfaview Video Conferencing Systems GmbH & Co. KG
description_nl : alfaview videoconferentiesystemen GmbH & Co. KG
description_ru : alfaview Video Conferencing Systems GmbH & Co. KG
audit_schedule :
editor :
keywords :
licence : https://alfaview.com/en/pricing/
homepage : https://alfaview.com/de/
package_uuid : a33329dc-29c0-4d2f-ad47-1e5dd26e58a4
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : dd2368af138d933ba22955cc432d8c095fa9fd55aabaa1ac3dcc96f0e07d412c
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-16T16:00:02.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 : jsQKATBwznM0SnUGhhS7vtmGMezaQdgPRh3p8/x85tjiRiRXN3A1jFqiS6/0vLRPYdGDM1QINz1qtYVIq0KANHw6CKZCaTIgbgnBnFHbUDtzSZ/3RYlBqK2lc1f6KZSdoNAmWifcVD4egwS2MkwFXuLtDV6V5Iu+amG0atWptp0Y7FbsMXq8m1i6aH7pU42xOhLcJ5iUyRcyia+6Z6EsBfGIGl0ZOcKckRYt9OjDVyyjrdR+EE4Kb/z95mT7uDdE+BVbwyVagiN0FPaTxIy2UpOVe+bqhGNGYwKpU6CNzZZMW4dUE2m4wzclHK4SjfTryvZNbN/MG14bRF7swhdNyw==
# -*- 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
bin_name = glob.glob('alfaview-setup-win-production-*.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
# url_base = "https://alfaview.com/en/download/"
url_msi = "https://assets.alfaview.com/stable/win/msi_version.info"
json_file = json.loads(wgets(url_msi, proxies = proxies))
for data in json_file["versions"]:
latest_bin = data["download_url"]
download_url = "https://assets.alfaview.com/stable/win/" + latest_bin
version = data["version"]
break
# 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)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
9004571c3f9a39dc2472433367eeb0255bc49b75683893c0f1c736c7951b87a8 : WAPT/control
dd2368af138d933ba22955cc432d8c095fa9fd55aabaa1ac3dcc96f0e07d412c : WAPT/icon.png
3528c40e0f5df527fa2a8ca27ee4e458c0ab022ff856856f03b14e46807d7adc : alfaview-setup-win-production-9.23.1.msi
37084ffb180462a755ee82b628bdcadbc636c5d5880abc5e9aee2fdb40ef9655 : luti.json
c927c0dbf3141cefb9f0cfd034e6abb640fa97756c89ca735680fc57e91bcb5a : setup.py
d1dc348ac741901cc99d204bbce4ef29eb7afa34d028e527d8c5acb00ae40543 : update_package.py