Share via


Msi to source code

Question

Wednesday, November 19, 2014 7:28 AM

Hi friends, does any one know how do i convert the Msi to source code

All replies (2)

Wednesday, November 19, 2014 11:05 AM âś…Answered

First you need to extract the files from the MSI package. Please refer to the following page for more information about this: http://superuser.com/questions/307678/how-to-extract-files-from-msi-package.

Then you have to decompile the assemblies. There is a tool called Ildasm.exe that can be used to disassemble intermediate language (IL) code:
http://msdn.microsoft.com/en-us/library/f7dy01k1(v=vs.110).aspx
http://blogs.msdn.com/b/lucian/archive/2008/11/15/where-are-the-sdk-tools-where-is-ildasm.aspx
http://stackoverflow.com/questions/1068193/ildasm-exe-through-visual-studio-2008

 


Wednesday, November 19, 2014 9:33 AM

Hi,

You already asked similar question here