wix - Wix3.8 WixUI_Advanced dialog how to skip license agreement -
i using wix3.8 , in install msi, need installscopedlg available using wixui_advanced, not first dialog license agreement.
i have seen lot of posts on how skip (or not display) dialog using wixui_installdir not support installscopedlg.
this have:
<property id="applicationfoldername" value="outlook add in" /> <property id="wixappfolder" value="wixpermachinefolder" /> <ui id="uisequence"> <uiref id="wixui_advanced" /> </ui>
can please show me how hide or skip license agreement while still using wixui_advanced.
you need understand way windows installer flows dialog dialog through use of newdialog controlevents. dialog 1 have next pushbutton control newdialog control event says goto dialog 2. dialog 2 have button says go dialog 1. wix ui extension hides in attempt make easy create basic ui. however, can see if edit built msi using orca , @ controlevent table.
the controlevent table has ordering column. msdn doco doesn't explain correctly it's not order priority. highest evaluates true wins.
in wix, publish element corresponds controlevent entries. trick author newdialog control events on correct controls out rank existing entries , bypass undesired dialog or insert new dialog.
an example of how can found here in code of open source project iswix.
Comments
Post a Comment