cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
kmlshield
Level 3

Extract msi installer to files

Hi,

Do there anyone who know how to extract msi installer into its files?

Do there any function to perform it?

Thank you.
Labels (1)
0 Kudos
(3) Replies
Holger_G
Level 10

Perform an Administrative installation (command line option /a).
0 Kudos
kmlshield
Level 3

Hi,

What you mean by Administrative installation (command line option /a)?

I tried this:

msiexec /a "C:\\A" /qb TARGETDIR="C:\\"

But got error. The error is "msiexec': not defined.


Do you know how to solve the error?
0 Kudos
dan_galender
Level 10

You need to point to your .msi file and you probably don't want to use the root of C. The syntax for a silent installation would be something like:

msiexec /a "c:\PathToMsi\Product.msi" TARGETDIR="C:\ExtractedLocation\" /qb
0 Kudos