Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WiX: Adding summary dialog displaying installed features

I would like to display to the users a summary page at the end of the installation that shows what features were installed. The ADDLOCAL property contains this information, but I cannot figure out how to display its value on a dialog. Adding it as the Text property of a Control does not work.

<!-- Does not display anything -->
<Control Id="InstalledFeaturesText" Type="Text" ... Text="[ADDLOCAL]" />

Thanks.

like image 798
C123 Avatar asked Nov 04 '22 09:11

C123


1 Answers

Add following line to your wix source code

<SetProperty Id="FEATURELIST" Value="[ADDLOCAL]" After="CostFinalize"/>

And use FEATURELIST property to get list of all installed feture. That’s really it. :)

This is so because it appears that the 'ADDLOCAL' becomes undefined after completion of all install sequence.

like image 154
Ramakant Avatar answered Dec 19 '22 23:12

Ramakant