You could get the WixUI_Minimal.wxs file from the WiX source code, save it to your project under a different name, like "CustomWixUI_Minimal.wxs". Open it up and change the UI element's Id to "CustomWixUI_Minimal".
<UI Id="CustomWixUI_Minimal"> Add a UIRef element to your main .wxs file with an Id that matches. <UIRef Id="CustomWixUI_Minimal" /> Going back to CustomWixUI_Minimal.wxs, comment out the Welcome dialog. <!--<DialogRef Id="WelcomeEulaDlg" />--> That should just leave you with the dialogs that show the progress bar, the message at the end and handle any errors. <DialogRef Id="ErrorDlg" /> <DialogRef Id="FatalError" /> <DialogRef Id="FilesInUse" /> <DialogRef Id="MsiRMFilesInUse" /> <DialogRef Id="PrepareDlg" /> <DialogRef Id="ProgressDlg" /> <DialogRef Id="ResumeDlg" /> <DialogRef Id="UserExit" /> psanaga wrote: > > I'm trying to find out which UI library would be most suitable for my > project. Currently I use LimitUI property in the wix file and with this > property, I don't get an end dialog which informs the user about > success/failure of the installation. I want to add another modal dialog > which would inform the user about success or failure and also a help text > to > the user in case of a failure. > > I tried using WixUI_Minimal dialog library, but it has lot of unnecessary > dialogs that I don't need(start and license screens). I just want a simple > UI with which the user wouldn't have to interact at all, except for the > end > dialog. How can I do this? > > Thanks, > Pratap. > > > -- > Vote for loksatta = vote for a better future > ------------------------------------------------------------------------------ > > _______________________________________________ > WiX-users mailing list > WiX-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wix-users > > -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/End-dialog-UI-tp5085685p5086435.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users