Skip to content
⌘ NSIS Forum Archive

Installing to updating text change

9 posts

vvvv66#

Installing to updating text change

Hello,

Can i replace

"Please wait while SOFTWARE is being installed "

by

"Please wait while SOFTWARE is being updated"

in the screen where the files are being copied?

I tried to find information in the documentations, but it seens it is not possible.

Regards,
Joost Verburg#
Define MUI_PAGE_HEADER_SUBTEXT before the INSTFILES page macro:

!define MUI_PAGE_HEADER_SUBTEXT "bla bla"
Comm@nder21#
I tried to find information in the documentations, but it seens it is not possible.
the word "impossible" doesn't exist at the nsis-community 😁
vvvv66#
i don't have macros created in my code .....


!define MUI_PRODUCT "Test Software"
!define MUI_APPFOLDER "teste"
!define MUI_EXENAME "updater.exe"
!define MUI_VERSION "1.0"
!define MUI_UNIFYLOGO "unify.bmp"

!include "MUI.nsh"

;#---- Configuration -----------------------

;General
OutFile "${MUI_EXENAME}"

;Folder selection page
InstallDir "$PROGRAMFILES\${MUI_APPFOLDER}"

;#---- Modern UI Configuration -------------------------

!define MUI_HEADERBITMAP "${MUI_UNIFYLOGO}"

;#---- Languages -----------------------------------------

!insertmacro MUI_LANGUAGE "English"

;#---- Installer Sections -------------------------------
Section "update"

SectionIn RO

SetAutoClose true

File /r "D:\update"

SectionEnd
Comm@nder21#
u want to create a silent installer???
then u won't need to replace any text, coz nearly noone is shown.

joost ment the page-macro for non-silent installers.
but i think u must insert the instfiles-page at least to make sections beeing executed!!!
vvvv66#
it's not a silent installer ... it almost one ...

if you click into it, it just show the progress of the update ....

but i want the form that shows the progress ....
Joost Verburg#
Insert

!define MUI_PAGE_HEADER_SUBTEXT "bla bla"
!macro MUI_PAGE_INSTFILE

before the MUI_LANGUAGE macro.
vvvv66#
sorry, but it not worked ....

it worked placing the

!insertmacro MUI_HEADER_TEXT "title" "subtitle"

inside the section ...

thanks anyway

regards,
deguix#
Be yourself in NSIS community... is rare see someone from Brazil and from Sao Paulo here... like me...