3

Hi all i am new to wix tool can any one help me to read the registry key variable value to another variable. Is there is any way to see the value contains in that variable in wix. Sample code is very much helpfull for me.

Thanks, rajeev kumar.

rajeevanyam
  • 31
  • 1
  • 2
  • Man, what is it about WiX questions? I swear I've never seem more ornery answers from any other part of SO. "RTFM" is such a common answer, it's almost like, maybe there's something wrong with manual -_- haha – kayleeFrye_onDeck Sep 30 '17 at 00:32

1 Answers1

1

You can go through this link

Use this code

<Property Id="INSTALL_SERVICE">
   <RegistrySearch Id="ServiceSearch" Name="ServiceName" Root="HKLM" Key="SOFTWARE\CompanyName\[ProductCode]\FeatureDetails" Type="raw" />
</Property>

Also you are new to WIX, so please go through this links

Sunil Agarwal
  • 4,097
  • 5
  • 44
  • 80