wix - Disable features during silent installation -
i have installation contains 17 features. when running in ui mode user can disable features. using standard mondo ui.
i want allow silent installation - meaning, user can provide /q parameter during installation. how features can disabled in mode?
you can use addlocal property enable or disable features. features passed property enabled , other features disabled. if want install features pass "all" (addlocal =all) instead of listing features.
msiexec /i "testproject.msi" addlocal=feature1,feature3 /q
Comments
Post a Comment