Loading
quiet Install with MST
I have a msi that was provided by a 3rd party vender. I used tuner to create a mst for the install. Everything installs correctly if I just call the mst file but if I use the /q switch it doesn't listen to my mst and installs with French language and none of my custome install answers are working.

 

This works...

 

msiexec /i "X:\EO401-HF-145489-WinClient.msi" EQCASNAME="equitrac" ADDLOCAL="Common,ClientBilling,CostPreview,WindowsPrinting,en" /q

 

This also works...

 

msiexec /i "X:\EO401-HF-145489-WinClient.msi" TRANSFORMS="X:\EO401-HF-145489-WinClient1.mst" /Lv c:\mislog.txt

 

but this doesn't...

 

msiexec /i "X:\EO401-HF-145489-WinClient.msi" TRANSFORMS="X:\EO401-HF-145489-WinClient1.mst" /q /Lv c:\mislog.txt

  • Take a look at the transform in the direct editor to see what it actually does. Keep in mind that the UI Sequence does not execute during silent installations.

Loading
quiet Install with MST