burn - Is it possible to pass a Wix variable to SuppressOptionsUI? -


i trying options button on wixstandardbootstrapperapplication hidden if application has been installed.

i hoping able pass variable suppressoptionsui. seems value of suppressoptionsui must literal yes or no.

this code using.

    <!-- don't show options button if have existing install -->     <variable name="suppressoptions" type="string" value="no"/>     <util:directorysearch         after='previousinstallfoldersearch'         condition='previousinstallfolder'         path='[previousinstallfolder]'         result="exists"         variable="suppressoptions"/>      <bootstrapperapplicationref id="wixstandardbootstrapperapplication.hyperlinksidebarlicense">         <bal:wixstandardbootstrapperapplication             showversion="yes"             licenseurl="http://static.my-site.com/eula.html"             logofile="installer-banner.bmp"             logosidefile="installer-firstpage.bmp"             suppressoptionsui="[suppressoptions]"         />     </bootstrapperapplicationref> 

so question is: there way of configuring wixstandardbootstrapperapplication allow suppressoptionsui configurable based upon variable populated registry or directory search?

nb using wixtoolset only. no vba or other ms tools.

"not today"

this open issue, available taking: wixvariable suppressoptionsui.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -