cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Roman1
Level 9

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.
Labels (1)
0 Kudos
(3) Replies
sooraj_er
Level 4

The below condition should work:
(VersionNT > 501) OR (VersionNT = 501 AND ServicePackLevel = 3)

Regards,
Sooraj
0 Kudos
Roman1
Level 9

Yes, it works!
0 Kudos
MichaelU
Level 12 Flexeran
Level 12 Flexeran

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)
0 Kudos