Error 32

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
Locked
filou07
Messages: 18
Registration: December 6, 2018 - 3:33 PM

July 26, 2019 - 11:10

Good morning,

I created a LibreOffice installation package, but the installation returns error 32: The process cannot access the file because it is being used by another process: 'c:\\windows\\temp\\wapt8lne2m'

Deleting all the waptxxxx folders in c:\windows\temp and restarting the PC did not change anything

In the end, the software is still installed... but not always

My script is very simple:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('Installation pack-libreoffice-V6 avec sauvegarde de l-ancien profil et suppression ancienne version')
    install_exe_if_needed("LibreOffice_setup.exe",'/VERYSILENT /profil=1',key='',min_version='6.1.6',timeout='3000')
    print(u"Oubli du paquet de l-ancien libreoffice \n")
    WAPT.forget_packages(pack-libreoffice')
Any ideas?

Thanks in advance
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

August 6, 2019 - 11:05

Hello,

I would recommend using the MSI version of LibreOffice. You can also take inspiration from our WAPT package:
https://store.wapt.fr/store/details-tis ... 4_all.wapt

Sincerely,
Jimmy
filou07
Messages: 18
Registration: December 6, 2018 - 3:33 PM

August 8, 2019 - 07:54

Hello,

thank you, but since it's the MIMO version of LibreOffice, I only have the executable file.
User avatar
sfonteneau
WAPT Expert
Messages: 2318
Registered: July 10, 2014 - 11:52 PM
Contact :

August 8, 2019 - 09:00

filou07 wrote: Jul 26, 2019 - 11:10 install_exe_if_needed("LibreOffice_setup.exe",'/VERYSILENT /profil=1',key='',min_version='6.1.6',timeout='3000')
You have not specified the uninstallkey in the install_exe_if_needed function

Therefore, Wapt cannot verify at the end of the installation that the software has been installed correctly
Locked