Guys: I Want to Install one msi with msiexec in a specific dir .. i'm using :

msiexec /i "msi path" INSTALLDIR="C:\myfolder" /qb

but is not working the "INSTALLDIR" , becouse the msi is installing in the default path and not in my specific path.

I already searched here and Msdn, but i can't fix it ! What am i doing wrong? or maybe i need one more command or idk.

Hugs and thanks.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Use TARGETDIR instead of INSTALLDIR

msiexec /i "msi path" TARGETDIR="C:\myfolder" /qb

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.