In an NSIS installer, I'm interested in displaying a MessageBox with a custom title. I currently have:
MessageBox MB_OK|MB_ICONEXCLAMATION|MB_TOPMOST "%SOME_STRING%"
In this call, there's no definition of MessageBox title, which then becomes a default string, saying <Installer Name> Setup. I would like to remove the 'Setup' part, or provide a string of my own.
Thank you.