Skip to content
⌘ NSIS Forum Archive

SilentInstaller with a Message Box at the end

2 posts

pillairohit#

SilentInstaller with a Message Box at the end

Hi.
I have normal installer, which i'm converting to a Silent installer.
There are a few issues that i'm coming across.

1. At the end of the silent installation, just before the installer exits, I wanna display a messagebox saying that the application was successfully installed. How do i do that in a silent installer?

2.Normally, at the end of the installation, I launch IE browser and launch my application. Can that be done with a silent installer?

3.Whats the difference between 'SetSilent' and 'SilentInstall'? Which one should i use?

I appreciate your time & help.
---
Rohit Pillai.
Afrow UK#
1., 2.
Function .onInstSuccess
...
FunctionEnd
3. SetSilent dynamically makes the installer silent. SilentInstall statically makes the installer silent (i.e. no user interface resources built etc.)

Stu