I am creating a WiX Installer and need to check if a specific version of Crystal Reports for .NET Framework 4.0 (v. 13.0.3) is installed.
I have found two ways that both seem to work (on my W7 machine), but am not sure if one or the other has any downfalls such as working on XP etc.
Option 1 (My concern with this option is if a later version is installed with a different product code, this condition will not pass):
<Property Id="CRVSINSTALLED">
<RegistrySearch Id="CRVSInstalledSearch" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\{AAD476D7-FC64-40BC-85EA-0C1FD98D8375}" Name="InstallDate" Type="raw" />
</Property>
<Condition Message="You don't have Crystal Reports for Visual Studio 2010 (v. 13.0.3) installed.">
<![CDATA[CRVSINSTALLED]]>
</Condition>
Option 2:
<Property Id="CRVSINSTALLED2">
<RegistrySearch Id="CRVSInstalledSearch2" Root="HKLM" Key="Software\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports" Name="CRRuntime32Version" Type="raw" />
</Property>
<Condition Message="You don't have Crystal Reports for Visual Studio 2010 (v. 13.0.3) installed 2.">
<![CDATA[CRVSINSTALLED2 >= "13.0.3"]]>
</Condition>

CRRuntime64Version. It would appear that even the native VS2010 bootstrapper checks the registry key. Refer to the contents of theProduct.xmlfile underC:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages\Crystal Reports for .NET Framework 4.0– Jaans Oct 24 '12 at 10:19