Skip to content
⌘ NSIS Forum Archive

Custom information instead of file paths

3 posts

one_eddie#

Custom information instead of file paths

Hi,

Is there a way I could show my custom message instead of message which is being shown when using "File" command?

To be clear. Instead of showing

Copying file 1...
Copying file 2...
Copying file 3...

I would like to show

Copying components...

Regards
pengyou#
Use the command SetDetailsPrint: http://nsis.sourceforge.net/Docs/Cha...html#4.9.14.14

The makensis.nsi script in the NSIS\Examples folder shows how to display more meaningful messages; here is a fragment from that file
  SetDetailsPrint textonly
DetailPrint "Installing NSIS Core Files..."
SetDetailsPrint listonly
one_eddie#
I was looking at DetailsPrint and similar. Don't know how missed SetDetailsPrint. It's working as expected. Thank you.