Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSIS MUI - how to write custom text to install log?

Tags:

nsis

nsis-mui

When copying files, I am doing few things with them... is it possible to notify user what is going on during installation in textbox that shows copied files? I was tryting to find that information in internet, but without luck... not sure what to look for...

like image 237
Flash Thunder Avatar asked Apr 11 '14 13:04

Flash Thunder


People also ask

How do you write a NSIS script?

NSIS Setup You can use the NSIS Menu and under the Compiler section click Compile NSI scripts to start MakeNSISW. The makensisw.exe in the NSIS installation folder is the actual compiler. It has a graphical front end that explains three ways to load scripts, so it's very easy to use.

How do you compile NSIS?

NSIS installers are generated by using the 'MakeNSIS' program to compile a NSIS script (. NSI) into an installer executable. The NSIS development kit installer sets up your computer so that you can compile a . nsi file by simply right-clicking on it in Explorer and selecting 'compile'.

What are NSIS files?

Text file written using NSIS (Nullsoft Scriptable Install System) script, a language used for declaring the logic and tasks for software installers; often references files and folders to install as well as Windows registry actions.


1 Answers

I will answer it myself, as someone may be looking for it:

DetailPrint "Some text"

Thank you.

like image 87
Flash Thunder Avatar answered Nov 03 '22 01:11

Flash Thunder