In boostrapper package.xml I am trying to read MSSQL entry from the regsitry like:
<InstallChecks>
<RegistryCheck Property="CheckSQLInstalled" Key="HKLM\SOFTWARE\Microsoft\Microsoft SQL Server" Value="SsrpActiveServer" />
</InstallChecks>
After I run the result setup.exe I get in the log:
"Reading value 'SsrpActiveServer' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server' Unable to read registry value Not setting value for property 'CheckSQLInstalled'"
I run it as Administrator. UAC is off also... The path in registry is correct. I can even retrieve it with BAT file like: Reg query "HKLM\SOFTWARE\Microsoft\Microsoft SQL Server" /v SsrpActiveServer
The problem happens on more than one machine. Any ideas? Thanks