Thank you. Here is my case:
1) the application "test.exe" should run ONLY, if user selects the feature "Solver" for installation
2) It should not run during uninstallation
Currently, I am using condition like
Remove <> ALL
What should I write to add a feature-dependent install?
Remove<> ALL & Solver = 3
Correct?
Can I combine these two conditions like that?
Main Topics
Browse All Topics





by: kulalkingPosted on 2009-10-21 at 20:55:44ID: 25630695
You can write like this " &Server = 3 or (!Server = 3 and &Server<>2) "
in above example '&' means the present status of the feature ( after the user modification)
'!' means status of the feature in the system
3 is install
2 is uninstall
so in above case user request for install the feature "Server" ( &Server = 3 ) OR
and in the case of modification old status is installsed and now he is not uninstalling .