Ubuntu – Installing msxml6 64-bit with wine

64-bitwine

I'm trying to install a software which relies on msxml6, and is only provided in a 64bit version (so I can't use the 32-bit msxml6 provided by winetricks).

I downloaded msxml6 from microsoft, and ran it with wine. The installation aborts mid-way saying "installation was interrupted". Here's the debugging log:

fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:richedit:ReadStyleSheet skipping optional destination
err:msi:ITERATE_Actions Execution halted, action L"Wdsfpca_AddRefcountMsxml.86F857F6_A743_463D_B2FE_98CB5F727E09" returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603

Does anyone know how I can work around this? Thanks in advanced

Wine version is 1.7.26 (latest beta), and configured for Windows 7. OS is Ubuntu 14.04 LTS 64-bit.

Best Answer

The solution turned out to be simple - using wine64 instead of wine, like so:

WINEPREFIX=/path/to/wineprefix wine64 msiexec /i /path/to/msxml6_x64.msi
Related Question