Hi,
In "launch Condition" - I select the server 2008 and 2008 R2.
When I tried to run the MSI from Server 2008 Domain Controller, I got message which told me the OS is not supported.
Looking in WIX file I found the MsiNTProductType=3
I think this is a bug. You must set this value MsiNTProductType >= 2
Because Domain Controller [DC] is server.
Thanks,
Didi
<Condition Message="[ProductName] cannot be installed on this operating system."><![CDATA[VersionNT=600 AND(WindowsBuild=6001)OR VersionNT>=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=3)]]></Condition>
In "launch Condition" - I select the server 2008 and 2008 R2.
When I tried to run the MSI from Server 2008 Domain Controller, I got message which told me the OS is not supported.
Looking in WIX file I found the MsiNTProductType=3
I think this is a bug. You must set this value MsiNTProductType >= 2
Because Domain Controller [DC] is server.
Thanks,
Didi
<Condition Message="[ProductName] cannot be installed on this operating system."><![CDATA[VersionNT=600 AND(WindowsBuild=6001)OR VersionNT>=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=3)]]></Condition>
Comment