Hi and welcome to Advanced Installer forums.
Thank you for your interest in Advanced Installer.
Indeed, the "Dialog Editor" feature is available only in an "Enterprise" or higher project type and you can use it to create your own custom dialog. However, no dialog can be displayed if the MSI runs in silent mode.
Instead, you can display a message box using a "Script Inline" custom action which will be placed after "InstallExecutionSequence -> InstallFinalize" standard action, using the following code:
Code: Select all
createobject("wscript.shell").popup "Instalation Finish!", 3, "Wait 3 seconds...", 64
You can also take a look on the attached sample project.
Let us know if this helped, otherwise give us more details about your scenario.
Best regards,
Eusebiu