[SOLVED] Package creation - timeout error
Published: January 13, 2026 - 4:46 PM
WAPT version: 2.6.1.17567
Server OS: Debian 12
OS machine administration: Windows Server 2019
Target operating system: Windows 11
Good morning,
I was asked to install software for teacher workstations.
So I created a package to install the executable from my administration server, in the following format:
I also tried:
However, when I apply it to a machine, the package fails with a "timeout after 600 seconds".
Have I forgotten something?
Thank you
Server OS: Debian 12
OS machine administration: Windows Server 2019
Target operating system: Windows 11
Good morning,
I was asked to install software for teacher workstations.
So I created a package to install the executable from my administration server, in the following format:
Code: Select all
def install():
# Declaring local variables
# Installing the software
print("Installing: Install_Monde_Espace_Temps.exe")
install_exe_if_needed('Install_Monde_Espace_Temps.exe',
silentflags='/S',
key='{2E5FC142-68F3-4CE5-AED9-3A74091C5FAC}_is1',
min_version='1.0'
)
- by commenting out the silentflags line or by using /VERYSILENT
and adding the timeout=1200 option
However, when I apply it to a machine, the package fails with a "timeout after 600 seconds".
Have I forgotten something?
Thank you