installer - WiX script with only Welcome and Completed screens -


i need wix 3 script display display 2 dialogs: welcome & completed. thats no need eula, folder selection etc. appreciated.

all need add in wix script, give welcomedlg before installation , show installation progress, exit dialog. don't forget add wixuiextension.dll references.

<ui id="userinterface">   <property id="wixui_installdir" value="targetdir" />   <property id="wixui_mode" value="custom" />    <textstyle id="wixui_font_normal" facename="tahoma" size="8" />   <textstyle id="wixui_font_bigger" facename="tahoma" size="9" bold="yes" />   <textstyle id="wixui_font_title"  facename="tahoma" size="9" bold="yes" />    <property id="defaultuifont" value="wixui_font_normal" />    <dialogref id="progressdlg" />   <dialogref id="errordlg" />   <dialogref id="filesinuse" />   <dialogref id="fatalerror" />   <dialogref id="userexit" />    <publish dialog="exitdialog" control="finish" event="enddialog" value="return" order="999">1</publish>   <publish dialog="welcomedlg" control="next" event="enddialog" value="return" order="2"></publish>  </ui> <uiref id="wixui_common" /> 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -