문제

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?

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top