My wix code is looking as follow :
<!-- CC 2017 = Version 110.0 -->
<Property Id="ISCC2017EXISTX64">
<RegistrySearch Id="IsCC2017Existx64" Root="HKLM" Key="Software\Adobe\Photoshop\110.0" Name="ApplicationPath" Win64="yes" Type="raw" />
</Property>
<Property Id="ISCC2017EXISTX32">
<RegistrySearch Id="IsCC2017Existx32" Root="HKLM" Key="Software\Adobe\Photoshop\110.0" Name="ApplicationPath" Win64="no" Type="raw" />
</Property>
<!-- CC 2018 = Version 120.0 -->
<Property Id="ISCC2018EXISTX64">
<RegistrySearch Id="IsCC2018Existx64" Root="HKLM" Key="Software\Adobe\Photoshop\120.0" Name="ApplicationPath" Win64="yes" Type="raw" />
</Property>
<Property Id="ISCC2018EXISTX32">
<RegistrySearch Id="IsCC2018Existx32" Root="HKLM" Key="Software\Adobe\Photoshop\120.0" Name="ApplicationPath" Win64="no" Type="raw" />
</Property>
Where I search to know if Photoshop CC 2017 or CC 2018 is installed on the machine. If so I can install the feature such as :
<Feature Id="FEATURE_EXTENSION_CC2017" Title="CC 2017" Description="Install KEY36 for CC 2017" Level="0">
<Condition Level="1">ISCC2017EXISTX64</Condition>
<ComponentGroupRef Id="CG_CC2017" />
</Feature>
<Feature Id="FEATURE_EXTENSION_CC2018" Title="CC 2018" Description="Install KEY36 for CC 2018" Level="0">
<Condition Level="1">ISCC2018EXISTX64</Condition>
<ComponentGroupRef Id="CG_CC2018" />
</Feature>
So next year, Photoshop will release Photoshop CC 2019, and I dont want to create an installer specially for this version. I would like to search for Registry : Software\Adobe\Photoshop
and loop over each potential version (like 110.0 and 120.0 in the case above).
So my question is :
1) Is there a way to loop on all child registry key using a <?foreach?>
?
2) Is there a way to have a single ComponentGroupRef that will point on same file, but I want them to be copy into different directory ? Because right now I defined the same component twice for each version.
If nothing is possible to do it with Wix language, is there a way to use an custom action to do it ? (I never made any custom action if anyone can point me how to do such thing it could be appreciate).