Как проверить систему Windows 7 или Windows Server 2008 R2 в Wix Installer? - PullRequest
11 голосов
/ 29 апреля 2010

Я работаю над проектом установки Windows. И теперь я хочу, чтобы только программное обеспечение могло быть установлено только в системе Windows 7 или Windows Server 2008 R2, я попытался использовать это:

<Condition Message='Windows Server 2008 R2 or Windows 7 is required'>(VersionNT = 600 AND ServicePackLevel = 1) OR VersionNT = 601 </Condition>

но он все еще может быть установлен в Windows Vista. Пожалуйста, помогите!

Спасибо!

Ответы [ 4 ]

24 голосов
/ 29 апреля 2010

См. https://www.msigeek.com/442/windows-os-version-numbers и https://www.lifewire.com/windows-version-numbers-2625171for пример

<Condition Message='Windows 95'>Version9X = 400</Condition>
<Condition Message='Windows 95 OSR2.5'>Version9X = 400 AND WindowsBuild = 1111</Condition>
<Condition Message='Windows 98'>Version9X = 410</Condition>
<Condition Message='Windows 98 SE'>Version9X = 410 AND WindowsBuild = 2222</Condition>
<Condition Message='Windows ME'>Version9X = 490</Condition>
<Condition Message='Windows NT4'>VersionNT = 400</Condition>
<Condition Message='Windows NT4 SPn'>VersionNT = 400 AND ServicePackLevel = n</Condition>
<Condition Message='Windows 2000'>VersionNT = 500</Condition>
<Condition Message='Windows 2000 SPn'>VersionNT = 500 AND ServicePackLevel = n</Condition>
<Condition Message='Windows XP'>VersionNT = 501</Condition>
<Condition Message='Windows XP SPn'>VersionNT = 501 AND ServicePackLevel = n</Condition>
<Condition Message='Windows XP Home SPn'>VersionNT = 501 AND MsiNTSuitePersonal AND ServicePackLevel = n</Condition>
<Condition Message='Windows Server 2003'>VersionNT = 502</Condition>
<Condition Message='Windows Vista'>VersionNT = 600</Condition>
<Condition Message='Windows Vista SP1'>VersionNT = 600 AND ServicePackLevel = 1</Condition>
<Condition Message='Windows Server 2008'>VersionNT = 600 AND MsiNTProductType = 3</Condition>
<Condition Message='Windows 7'>VersionNT = 601</Condition>
<Condition Message='Windows 8'>VersionNT = 602</Condition>
10 голосов
/ 29 апреля 2010

Просто проверьте для VersionNT 601 или новее, Windows 7 и Server 2008 R2 имеют одинаковое значение.

<Condition Message="Win7 or 2008 R2 required"><![CDATA[Installed OR VersionNT >= 601]]></Condition>
6 голосов
/ 29 марта 2012

Вы можете использовать свойство MsiNTProductType, чтобы определить, является ли это серверной ОС. В сочетании с проверкой версии NT вы можете проверить, есть ли у вас Windows Server 2008R2. Это будет выглядеть следующим образом:

<Condition Message="Windows Server 2008R2 required">
  <![CDATA[(VersionNT = 601 AND MsiNTProductType > 1) OR Installed]]>
</Condition>
1 голос
/ 29 апреля 2010

Vista и Server 2008 pre-SP2 имеют один и тот же основной номер версии. Вам также нужно искать Wix, эквивалентный VER_NT_SERVER (InstallShield). (на работе сейчас Wix не установлен)

...