vote up 5 vote down star
1

I have a Wix installer which should be allowed to run on Windows Server 2008 but not on Vista. According to Microsoft's Operating System Properties page, this is not possible using the parameters they provide for this purpose (VersionNT and WindowsBuild).

Has anyone solved this problem or know how to solve it?

Thanks!

flag

60% accept rate

2 Answers

vote up 5 vote down check

Try

<Condition Message="This application is only supported on Windows Server 2008, or higher.">
    <![CDATA[Installed OR (VersionNT >= 600 AND MsiNTProductType > 1)]]>
</Condition>
link|flag
vote up 1 vote down

Note that such a check can be easily bypassed by someone simply editing the MSI with Orca, so unless there are technical limitations (e.g. even if they get it installed, certain services will only be present on the Server OS) I wouldn't advise it.

link|flag
Good point, but I think making them do that is enough of a barrier to entry that they'll be aware they're running on an OS that's 'not supported' ;) – Ian Grainger Jul 28 at 8:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.