[SOLVED] Creating Office Standard 2016 package

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
admgautier
Messages: 45
Registration: Sep 24, 2018 - 4:48 p.m.

November 8, 2018 - 5:26 PM

Hello,

Sorry for the late reply (I was in training...). Thank you for the suggested correction; the package creation goes smoothly, the installation seems to start, but I'm having a timeout problem (set to 1200), which gives me the following error:
Office 2016 Standard Installation
TimeoutExpired: Command '"setup.exe" /adminfile "config.msp"' timed out after 1200 seconds with output ''''.

Do you know why I'm getting this error? (I think it's related to my setup.py configuration file, but I don't know where...)

PS: For your information, when I run a silent installation (directly on the machine) with the command:
path\to\the\file\setup.exe /config path\to\the\file\config.xml,
the installation proceeds without any problems.

Thank you.
Last edited by admgautier on 21 Nov 2018 - 09:50, edited 1 time.
User avatar
htouvet
WAPT Expert
Messages: 436
Registration: March 16, 2015 - 10:48
Contact :

November 8, 2018 - 5:43 PM

In Simon's answer, add an "r" before the path and command, because there are backslashes.
Perhaps the MSP file also needs to be specified with an absolute path:

Code: Select all

    if not check_installed_out:
            cmd = r'ISO_office\setup.exe /adminfile "%s"' % makepath(basedir,r'ISO_office\config.msp')
    else:
            cmd = r'msiexec.exe /p "%s"' % makepath(basedir,r'ISO_office\config.msp')
Tranquil IT
admgautier
Messages: 45
Registration: Sep 24, 2018 - 4:48 p.m.

November 13, 2018 - 8:52 AM

Good morning,

Thank you for all your suggestions, I have finally solved my problem, thanks to your latest contributions.
Indeed, by adding the 'r' AND adding the 'absolute' path, the package works once compiled (you also need to copy the .xml config file to the root of the WAPT project before compiling the package).

Code: Select all

if not check_installed_out:
            cmd = r'ISO_office\setup.exe /adminfile "%s"' % makepath(basedir,r'ISO_office\[b]chemin_complet_j_usqu_au_fichier[/b]\config.msp')
    else:
            cmd = r'msiexec.exe /p "%s"' % makepath(basedir,r'ISO_office\[b]chemin_complet_j_usqu_au_fichier[/b]\config.msp')
THANKS
Locked