Breitbandmessung
Silent install package for Breitbandmessung
3.12.0-1
Configuration
Configuration
- package: tis-breitbandmessung
- name: Breitbandmessung
- version: 3.12.0-1
- categories: Configuration
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 114.87 Mo
- homepage : https://breitbandmessung.de/desktop-app
package : tis-breitbandmessung
version : 3.12.0-1
architecture : x64
section : base
priority : optional
name : Breitbandmessung
categories : Configuration
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Desktop broadband measurement application
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Application de bureau de mesure du haut débit
description_pl : Aplikacja do pomiarów szerokopasmowych
description_de : Desktop-Anwendung zur Messung von Breitband
description_es : Aplicación de sobremesa de medición de banda ancha
description_pt : Aplicação de medição de banda larga de secretária
description_it : Applicazione desktop per la misurazione della banda larga
description_nl : Desktop breedbandmeettoepassing
description_ru : Настольное приложение для измерения широкополосных частот
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://breitbandmessung.de/desktop-app
package_uuid : c3fe1866-b217-4a26-871d-2194f18302b9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-08-02T09:14:29.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 : iHz/MndVgzpfVIldY19PvG/QJoYAwCdHfbYf78RuQdlwsQkB6l8rn0O+hQ9vXM3+cQ6dkUNGnpXfWVJw5mJ9qUbha0e2ediY6N/9nzXMGExVKDPbBqlhTk3WWnGJPvzOghAJP4n6b5Sewu1AiUfh1glmR4we6YezqtwtcZf4KjD2ez4//SDu5Az+KmKcitxlTTHak5PrkW8+zbCzRD6p7grpNHPnh2TnLGGLb76ZNVQ+BLDIjwf//VcceiUy+J8XN4Pbg/QJvEwi6xldpfVqlgQpcqar9LIM2x0RftcQWlv0EWH+4r2AlCUyODcueX+XB34H/kfvPZQC8IF4hm6N6w==
# -*- 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
print("Installing: Breitbandmessung-win.exe")
install_exe_if_needed('Breitbandmessung-win.exe',
silentflags='/S',
key='14607473-30db-509f-94f0-bb7c085c619e',
min_version=control.get_software_version(),
)
# -*- 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://download.breitbandmessung.de/bbm/Breitbandmessung-win.exe"
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()
6e83e35e7e2e86ca19928e7f5a47a0ec8c301fafcc13e11b19fe36818969d659 : Breitbandmessung-win.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9f6c178b7d6c082a61bb7ef2c9c3b35d4f4247de74c0867d06c105a52ee658eb : WAPT/control
9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22 : WAPT/icon.png
7d0811a22fe22ca662404ac6ac2abbe8daf6399144acaa69538dd679969e2978 : luti.json
d38ab8fd3bfde48803e99cf6ca172dd02cf54ca863e6929a85d068eb842e9a24 : setup.py
41c31ff8115095dbf598e3d6b214bd5e719a685e5953b41767fa5f0eaf407441 : update_package.py