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
Post a Comment