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
- :
- Re: Install Condition Greather Or Equal Win XP Sp3
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
‎Feb 17, 2014
04:53 AM
Install Condition Greather Or Equal Win XP Sp3
Hallo,
how do I create a Install condition for Basis-MSI Setup "Installation on all Windows OS beginning from XP SP3" ?
Using Project Assistant, I can not put the required SP3.
how do I create a Install condition for Basis-MSI Setup "Installation on all Windows OS beginning from XP SP3" ?
Using Project Assistant, I can not put the required SP3.
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 19, 2014
03:22 AM
The below condition should work:
(VersionNT > 501) OR (VersionNT = 501 AND ServicePackLevel = 3)
Regards,
Sooraj
(VersionNT > 501) OR (VersionNT = 501 AND ServicePackLevel = 3)
Regards,
Sooraj
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 19, 2014
03:28 AM
Yes, it works!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 20, 2014
11:04 AM
sooraj_er wrote:
(VersionNT > 501) OR (VersionNT = 501 AND ServicePackLevel = 3)
As a general rule, I would advise using ServicePackLevel >= 3, although for the case of Windows XP either is likely good enough (I don't expect any further SPs of XP).
Also note that Windows 2003 versions may not necessarily correspond as you want; often 2003 requires SP2 where XP requires SP3. If that's the case for your requirement, you'd want a more complex case:
(VersionNT > 502) OR (VersionNT = 502 AND ServicePackLevel >= 2) OR (VersionNT = 501 AND ServicePackLevel >= 3)