Advertisement
gn4711

Extract files from MSI

Apr 6th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. To extract files from a .msi file at the command line, type:
  2.  
  3. msiexec /a PathToMSIFile /qb TARGETDIR=DirectoryToExtractTo
  4.  
  5. For example, to extract files from f:\zenworks\zfdagent.msi into c:\zfd701 you would type:
  6.  
  7. msiexec /a f:\zenworks\zfdagent.msi /qb TARGETDIR=c:\zfd701
  8.  
  9. The destination directory does not need to exist prior to running this command.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement