MSI is not installing Silently.
When I install Msi in UI mode, it works fine but when I pass silent parameters like "/q[b|n]" it will not install. What could be the possibilities?
Answers (2)
Could be a number of things, but check any launch conditions, of see if any features have Level higher than INSTALLLEVEL property value.
In alot of cases INSTALLLEVEL is set to 100 or 200, and a feature that the vendor never intented to be accepted as default will be set to 101 or 201(depending on base value) so that it WONT install.. you can fix this via cmdline by adding the property INSTALLLEVEL=300 (any number higher than highest Feature level) This will force everything to install.
Comments:
-
I agree with EKGCORP - mattski 11 years ago
what are the error messages you are getting? are you running as admin?
Comments:
-
It is not prompting any error. It installs the files in "C:\Program files" but not shortcuts and application entry in Add or Remove programs. - rvprasad 11 years ago
-
This is not standard behaviour for an msi. This can happen when there are install conditions on your components that are evaluated differently for silent and ui setup. I suggest opening up the msi and checking the conditions.
If that's too much hassle you can always repackage the application. - EVEEN 11 years ago -
The shortest way to diagnose what's happening is to log both installation types. A comparison between the two logs will show you exactly what's happening. - anonymous_9363 11 years ago