I use mixed installer. but I don't find Condition element.
Code: Select all
<ROW Component="BugHead.exe" ComponentId="{...}" Directory_="APPDIR" Attributes="256" Condition="VersionNT64" KeyPath="BugHead.exe"/>
<ROW Component="BugHead.exe_1" ComponentId="{...}" Directory_="AI_Bin32_Dir" Attributes="0" Condition="NOT VersionNT64" KeyPath="BugHead.exe_1"/>
But I don't add Condition="VersionNT64" and Condition="NOT VersionNT64".
then I edited aip setup file.
Code: Select all
<ROW Component="RewriteData.exe" ComponentId="{...}" Directory_="APPDIR" Attributes="256" KeyPath="RewriteData.exe"/>
<ROW Component="RewriteData.exe_1" ComponentId="{...}" Directory_="AI_Bin32_Dir" Attributes="0" KeyPath="RewriteData.exe_1"/>
Code: Select all
<ROW Component="RewriteData.exe" ComponentId="{...}" Directory_="APPDIR" Attributes="256" Condition="VersionNT64" KeyPath="RewriteData.exe"/>
<ROW Component="RewriteData.exe_1" ComponentId="{...}" Directory_="AI_Bin32_Dir" Attributes="0" Condition="NOT VersionNT64" KeyPath="RewriteData.exe_1"/>