Archive: Set up Branding


Set up Branding
I am trying to remove "NullSoft Install System ..." which is grayed out at the bottom of each page and replace it with "Copyright 2003"
I understand it should work with the MUI_BRANDINGTEXT but I can't seem to get it to work properly.

The script looks something like this.

!define MUI_ABORTWARNING
!define MUI_BRANDINGTEXT "Copyright 2003"
; .... etc
!insertmacro MUI_PAGE_LICENSE "MyLicense.txt"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"

No Errors but does not work!

Please Help!


MUI_BRANDINGTEXT is no longer needed. Use BrandingText.


Thank you that worked great.