To extract files from an MSI package, run this in a command prompt:
msiexec /a setup.msi /qb targetdir=c:\target_dir
setup.msiis the MSI to extracttarget_diris the place to expand the extracted files. If the directory does not exist, it will be created.
Happy hacking!