0

Is there any way to easily get a list with a full target files from MSI package file, without unpacking it? And store it, for example, in a text file?


Solved

Question resolved with a help of Christopher Painter, which already found the answer: How can I resolve MSI paths in C#?

Community
  • 1
  • 1
  • What does the Windows-Installer section on MSDN say? – bash.d Jun 17 '13 at 14:13
  • 1
    possible duplicate of [How can I resolve MSI paths in C#?](http://stackoverflow.com/questions/14611838/how-can-i-resolve-msi-paths-in-c) – Christopher Painter Jun 17 '13 at 17:35
  • bash.d, probably I missed something on MSDN, but, unfortunately, I didn't found anything that could easily get the list of files with full target file paths. – user2466851 Jun 17 '13 at 20:03
  • 1
    Christopher Painter, seems like it's all I need! Thank you very much, sir! – user2466851 Jun 17 '13 at 20:04
  • Possible duplicate of [How can I resolve MSI paths in C#?](https://stackoverflow.com/questions/14611838/how-can-i-resolve-msi-paths-in-c) – Cœur May 13 '18 at 14:49

1 Answers1

1

Use ORCA to open the msi, right click - export tables choose File table.

Otávio Décio
  • 73,752
  • 17
  • 161
  • 228
  • It will store just the file names, but not the full target file paths, that I need. Anyway, thanks for the reply. – user2466851 Jun 17 '13 at 20:05