38

Related: How to extract files from MSI package?

To extract the contents of a MSI installer using Linux, I can either use msiexec with wine or use 7zip.

However, the latter does not preserve directories and file names only in part. Is there any way to properly extract MSI files without having to use wine?


edit: to illustrate the issue with Microsoft's Infer.NET, here is a list of files that 7zip produces and here one that msiexec produces (where the latter is what I want)

3 Answers3

31

Give msiextract a try, https://live.gnome.org/msitools

And open bugs!

user2834
  • 418
11

While it won't help you immediately, lessmsi is working on a native Linux version. It preserves directory structure like you want, so it's worth checking up on if this is going to be a long-term issue for you. Unfortunately, .msi support on Linux seems pretty sparse, so lessmsi or msiexec through wine might be your only immediate option, even if (as you said) wine is a pretty heavy dependency for extracting archives.

sherbang
  • 335
ChimneyImp
  • 1,511
  • 1
    That indeed seems to be the best solution, using wine and waiting for lessmsi for Linux. – Michael Schubert Jun 03 '12 at 17:27
  • 4
    FYI: In the latest release of lessmsi I managed to move the cab extraction code over to libmspack which is a portable library that should run on linux too. So we did take a concrete step towards linux support recently. Soon I hope to use a portable msi lib, which will make everything portable. – Scott Willeke Feb 05 '13 at 18:40
  • 2
    -1. Linux version still does not exist after many years, and since question was is there any way to properly extract MSI files without having to use wine, this is not the answer. I have used instead msiextract from msitools package (sudo apt install msitools in Ubuntu) as recommended in the answer by user2834. – Lissanro Rayen May 14 '19 at 00:02
1

You can try software called cabextract - atleast Ubuntu has packages for it, I would expect it to be found from other popular distros as well.

Unksi
  • 92
  • 4
    Thanks for the hint, but cabextract does not even partially conserve filenames and directories (so it performs worse than 7zip). – Michael Schubert May 28 '12 at 12:30
  • 1
    The MSI format is multiple layers: at the top level it's a disk image, with data blocks scattered all around inside the .msi file. If you decode the disk image, it contains several files, including a .cab file, and database files. cabextract finds CAB file headers inside the .msi image, but as the full .cab file is not contiguous, it can't extract it. 7zip can extract the disk image and then the CAB file, but it doesn't know how to read the database files, which map the CAB file entries to their true installation paths, like lessmsi does. – Stuart Caie Mar 23 '15 at 09:59