trying to launch XLPRO3 gives error -5003

Questions about Wine on Linux
Locked
k3ck3c
Level 2
Level 2
Posts: 40
Joined: Wed Oct 22, 2014 12:42 am

trying to launch XLPRO3 gives error -5003

Post by k3ck3c »

Hello

Ubuntu 18.04, wine-4.12.1 (Staging)

I get the Windows software XLPRO3 Calcul from
https://www.legrand.fr/pro/outils/appli ... lectriques

I check what it needs

Code: Select all

objdump -x ~/Téléchargements/XLPRO3_CALCUL_FRA_3.6.06.exe | grep -i .dll | sort | uniq
	Nom DLL: ADVAPI32.dll
	Nom DLL: COMCTL32.dll
	Nom DLL: GDI32.dll
	Nom DLL: KERNEL32.dll
	Nom DLL: LZ32.dll
	Nom DLL: msi.dll
	Nom DLL: ole32.dll
	Nom DLL: OLEAUT32.dll
	Nom DLL: RPCRT4.dll
	Nom DLL: SHELL32.dll
	Nom DLL: USER32.dll
	Nom DLL: VERSION.dll
I create a clean prefix

Code: Select all

WINEARCH=win32 WINEPREFIX=~/.wine_xpro3 winecfg
then using the latest winetricks I install

Code: Select all

WINEARCH=win32 WINEPREFIX=~/.wine_xpro3 winetricks -q comctl32 ole32 oleaut3 d3dx9 vcrun2010
when I launch the installation

Code: Select all

WINEARCH=win32 WINEPREFIX=~/.wine_xpro3 wine ~/Téléchargements/XLPRO3_CALCUL_FRA_3.6.06.exe
and I get in InstallShield the error
une erreur -5003: 0xffffec75 est survenue lors de l'installation
Thanks for any hint
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: trying to launch XLPRO3 gives error -5003

Post by jkfloris »

I don't get any errors with Wine 5.0-rc3 in a clean Wineprefix.
Do you get any errors if you try to install the application without any winetrick?
k3ck3c
Level 2
Level 2
Posts: 40
Joined: Wed Oct 22, 2014 12:42 am

Re: trying to launch XLPRO3 gives error -5003

Post by k3ck3c »

Hello

If I try to install the application in a clean wineprefix without any winetricks, it seems to work. (I stilll have to add an update, as offered)

Thanks.

I was wondering what triggered the error?

Is there in the wiki some doc about the needed winetricks from the objdump commands I used?
spoon0042
Level 6
Level 6
Posts: 572
Joined: Thu Dec 24, 2009 11:00 am

Re: trying to launch XLPRO3 gives error -5003

Post by spoon0042 »

Generally speaking wine attempts to implement those dlls and winetricks should only be necessary when wine's implementation is missing or buggy. Trying to override low level stuff (like comctl) can just make things worse.
Locked