Wir nutzen Veyon aktiv und alles funktioniert.
Wir werden bestimmte Zusatzmodule von Veyon erwerben.
Hierfür ist die Installation des Plugins erforderlich: veyon-addons-4.10.4.0-win64-setup.exe
Siehe Dokument:
https://veyon.io/en/addons/
Im Folgenden stelle ich ein Paket vor, das zwar sicherlich nicht besonders gut programmiert ist, aber funktioniert:
Code: Alle auswählen
# -*- 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():
bin_name = glob.glob("veyon-addons-*.exe")[0]
silentflags = "/S"
install_exe_if_needed(
bin_name,
silentflags=silentflags,
key="",
min_version=control.get_software_version(),
timeout=300,
)Guten Tag.
