This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- omit/disable feature?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 27, 2008
12:23 PM
omit/disable feature?
One of the features that is being installed is a VistaGadget. There is a condition on the component so that it is not installed if (VersionNT=600 And WindowsBuild>=5600)
It would be better to disable the selection of this feature in the UI if the user is not running Vista. I have tried adding a condition to the VistaGadget feature for this, but am not sure about the condition level, which is currently set to 1.
Am I on the right track to be able to disable this feature? Is it a matter of getting the correct condition level set?
Thanks in advance,
Don Metzler
It would be better to disable the selection of this feature in the UI if the user is not running Vista. I have tried adding a condition to the VistaGadget feature for this, but am not sure about the condition level, which is currently set to 1.
Am I on the right track to be able to disable this feature? Is it a matter of getting the correct condition level set?
Thanks in advance,
Don Metzler
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 27, 2008
12:47 PM
Try setting a Feature Condition setting the Level to 0 (zero) and the condition VersionNT < 600. This makes that feature invisible and deselected if the condition (a pre-Vista OS) is true. So this Feature Condition, would have the feature be both visible and selectable (assuming the Display property is one of the Visible options) on Vista and Server 2008 systems.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 27, 2008
05:16 PM
DanGalender wrote:
Try setting a Feature Condition setting the Level to 0 (zero) and the condition VersionNT < 600. This makes that feature invisible and deselected if the condition (a pre-Vista OS) is true. So this Feature Condition, would have the feature be both visible and selectable (assuming the Display property is one of the Visible options) on Vista and Server 2008 systems.
This is great - exactly what I was looking to do.
Thanks!
Don