RoboAlex
RoboAlex

Reputation: 5015

Removing branding from NSIS installer

Could any one help me to remove the "Nullsoft" label in NSIS installer? Please refer the image below.

alt text

Upvotes: 8

Views: 2563

Answers (3)

Jörg Hoffmann
Jörg Hoffmann

Reputation: 1

This should help to remove the line from the bottom:

GetDlgItem $R0 $HWNDPARENT 1045
ShowWindow $R0 ${SW_HIDE}

Upvotes: 0

DIMM_V2
DIMM_V2

Reputation: 131

to remove line from the bottom :

!insertmacro DestroyWindow $HWNDPARENT 1045 # dimm remove line from bottom enter image description here

Upvotes: 0

Anders
Anders

Reputation: 101764

BrandingText " "

Upvotes: 13

Related Questions