Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

How to extract binaries from msi ?


3 replies to this topic

asebasti

asebasti
  • Members
  • 4 posts

Posted 18 September 2002 - 02:32

Any way to extract binaries from a msi file? Without actually installing the program. I have binaries that target the GAC and I need to extract them to create a patch...but I have no way to get the original binaries with out running the install, which will register them in the GAC.
Thanks in advance,
Anthony.

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 18 September 2002 - 07:42

Perform an administrative install using
msiexec.exe /a your.msi
This should only extract the files to a location you specify, without actually installing/registering anything

asebasti

asebasti
  • Members
  • 4 posts

Posted 18 September 2002 - 19:11

Thanks, but I got a 2203 error towards the end. Visual Studio.net created the msi along with the setup.exe. I'll look into the administrative install more now that I have some direction.
Anthony.

Ken Gross

Ken Gross
  • Members
  • 14 posts

Posted 11 October 2002 - 02:48

If the files are embedded in a cab file you can extract the cab file and use something that can read cab files to get the binaries out of the assembly.

Just a thought,
Ken