Как проверить систему Windows 7 или Windows Server 2008 R2 в Wix Installer?
Я работаю над проектом установки 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 ответа
Просто проверьте версию NTN 601 или новее, Windows 7 и Server 2008 R2 имеют одинаковое значение.
<Condition Message="Win7 or 2008 R2 required"><![CDATA[Installed OR VersionNT >= 601]]></Condition>
См. 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>
Вы можете использовать MsiNTProductType
свойство, чтобы определить, если это сервер OS. В сочетании с проверкой версии NT вы можете проверить, есть ли у вас Windows Server 2008R2. Это будет выглядеть следующим образом:
<Condition Message="Windows Server 2008R2 required">
<![CDATA[(VersionNT = 601 AND MsiNTProductType > 1) OR Installed]]>
</Condition>
Vista и Server 2008 pre-SP2 имеют одинаковый основной номер версии. Вам также нужно искать Wix, эквивалентный 'VER_NT_SERVER' (InstallShield). (на работе сейчас Wix не установлен)