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
Custom information instead of file paths
3 posts
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
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
I was looking at DetailsPrint and similar. Don't know how missed SetDetailsPrint. It's working as expected. Thank you.