34

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)

Michael Schubert
  • 680
  • 2
  • 7
  • 15
  • You can use this [article for Ubuntu](http://svaksha.com/post/2010/Extract-.msi-archive-format-on-Ubuntu) hope it will help you. And also try [Jsmsix.exe](http://www.jsware.net/jsware/zips/jsmsix1.zip). – avirk May 27 '12 at 02:55
  • Thanks, I already read the article and it does not resolve the 7zip issues (neither in combination with e.g. cabextract). Jsmsix would still require `wine` because you can't run Windows executables natively. – Michael Schubert May 28 '12 at 12:33
  • Dumb question but: What's wrong in using wine? – Pitto May 30 '12 at 16:25
  • 2
    What I'd like to do is create a buildscript for Archlinux, for which a set up wine is quite a bulky dependency just to be able to install something that should depend solely on mono. – Michael Schubert May 30 '12 at 19:12
  • Did you try and use msiexec with wine? – happenpappen May 31 '12 at 18:33

3 Answers3

29

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

And open bugs!

user2834
  • 398
  • 4
  • 6
10

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
  • 325
  • 1
  • 2
  • 8
ChimneyImp
  • 1,481
  • 12
  • 22
  • 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
  • 3
  • 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