
alfaview
Silent install package for alfaview
9.22.12.0-2
- package: tis-alfaview
- name: alfaview
- version: 9.22.12.0-2
- maintainer: Amel FRADJ
- licence: https://alfaview.com/en/pricing/
- target_os: windows
- impacted_process: alfaview
- architecture: x64
- signature_date:
- size: 71.70 Mo
- installed_size: 74.32 Mo
- homepage : https://alfaview.com/de/
package : tis-alfaview
version : 9.22.12.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 : PROD
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 : 3082dbef-05af-4d7e-8a5d-3ae36d213555
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : dd2368af138d933ba22955cc432d8c095fa9fd55aabaa1ac3dcc96f0e07d412c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-24T14:00:24.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 : rPrC5eD91GDbdltITgAVEgusnEZcJlpfplLxEpR9ENb1HgZ2dgvn9CgdKxaQC3GCQZxzFlgYh7Quh+HDDVdFpDfNfY6NPcraSEpXPSGHJv/eLyyxF4sOhnIhLs78pONhXvVkYaaNb2OyAZ0+5K4X9L8D0IyTioeIT468jmUGhkiohZe44iHVsQ2mhkky8lRGgKbVfAZf9KktwbGv4Ue/Dr7+9rJcG2ne55bxo+qynRwnEMq3VJ1a3io2uuXbd33+56T7uK0eCDfJMEEqySmRivUcxkxHwnJT2dgExxr5ew5oVp6Nh0jHt/GeIFLdE6XbaJzyk2RMEI3B35hr/DMetQ==
# -*- 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()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f29487fbdc280eaedd03b27ac8499c72f981fda257feff9421f3f2dcd0d83fd5 : WAPT/control
dd2368af138d933ba22955cc432d8c095fa9fd55aabaa1ac3dcc96f0e07d412c : WAPT/icon.png
eca2087d5254bee3a26a0eabc7055425b21c67b6b9b1e5d35f1ab2bce9904f01 : alfaview-setup-win-production-9.22.12.msi
c470ad8c11fec15764bed7b6d0e84fbeed626ece75c9e36c9c6ae8bf65b409b1 : luti.json
c927c0dbf3141cefb9f0cfd034e6abb640fa97756c89ca735680fc57e91bcb5a : setup.py
d1dc348ac741901cc99d204bbce4ef29eb7afa34d028e527d8c5acb00ae40543 : update_package.py