I have a simple Wix installer which deploy my basic application. Until now, i used the basic UI of WiX because my installer know where install the files. But at the end of installation, i don't have a notification that indicate that the installation ended. I would like just an pop-up or anything else which notify the user that installation is completed like an MessageBox in C# with "Installation complete" and a button OK to close. I checked the other topic of StackOverFlow but is too complicated for my case.
Actually, i have this but i'm a bit lost:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="" Version="1.0.0.0" Language="1036" Name="Deployeur" Manufacturer="My Manufacturer Name">
<Package InstallerVersion="300" Compressed="yes" />
<Media Id="1" Cabinet="myapplication.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="WINDOWSVOLUME">
<Directory Id="APPLICATIONROOTDIRECTORY" Name="PROJECT">
<Directory Id="APP" Name="APPLICATION" />
<Directory Id="FOLDERSCRIPT" Name="files" />
</Directory>
</Directory>
</Directory>
<Feature Id="root" Title="Main" Level="1">
<ComponentGroupRef Id="appli" />
<ComponentGroupRef Id="folderFiles" />
</Feature>
<UI>
<Publish Dialog="ExitDlg"
Control="Finish" />
</UI>
<Property Id="WIXUI_EXITDIALOGOPTIONALTEXT" Value="Installation completed" />
</Product>
</Wix>