is there some way to show a message box due to some condition but continue installation?
I would like to inform the user about the recommended amount of RAM if he has less.
If I use
<Condition Message="For running $(var.ProductName), 4GB of physical memory are recommended.">
<![CDATA[PhysicalMemory > 3500]]>
</Condition>
the installation is unsuccessful on machines with less than 4GB of RAM.
How can I avoid this?
Thanks for your help!
Thanks to Cosmin Pirvu’s answer I found the following solution with
custom actionsto work for me, I want to share with you: