Question

I have an installation that contains about 17 features. When running in UI mode user can disable features. I am using standard Mondo UI.

I want to allow silent installation - meaning, user can provide /q parameter during installation. How features can be disabled in that mode?

Was it helpful?

Solution

You can use ADDLOCAL property to enable or disable the features. The features that are passed to this property only enabled and other features will be disabled. If you want to install all features pass "ALL" (ADDLOCAL =ALL) instead of listing all features.

msiexec /i "TestProject.msi" ADDLOCAL=Feature1,Feature3 /q
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top