We actively use Veyon and everything works.
We will be purchasing certain add-ons from Veyon.
This requires the installation of the plugin: veyon-addons-4.10.4.0-win64-setup.exe
See document:
https://veyon.io/en/addons/
Below I'm sharing a package that's certainly not very well coded but functional:
Code: Select all
# -*- 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,
)Good day.
