Customizing Post-Installation Text Messages
AdminStudio 2023 | 25.0 | Application Manager
You can customize the post-installation messages that are displayed in the PowerShell installer by editing the Show-InstallationPrompt -Message value in the Deploy-Application.ps1 file. By default, the message is: Thank you for using Flexera!.
##*===============================================
##* POST-INSTALLATION
##*===============================================
[string]$installPhase = 'Post-Installation'
## <Perform Post-Installation tasks here>
## Display a message at the end of the install
If (-not $useDefaultMsi) { Show-InstallationPrompt -Message 'Thank you for using Flexera!' -ButtonRightText 'OK' -Icon Information -NoWait }