Skip to content
⌘ NSIS Forum Archive

Nsis

4 posts

arnabsinha_add#

Nsis

Hello Sir,
I am working in NSIS for last 6 mounts and it has solved our installation problem of 5 software.
But i have some Question , if i get the answer then that will be a great help for me.

Question:-
==========
I need a password/serial no checking at the time of installation. How can i do this ?

I did not want to show the message that i am installing the files which are shown above the Progress bar, How can i do this ?

I am very much Edgar about your answer.

thanks

Arnab
Vytautas#
Hello Arnab,

To use a password and/or serial number checking with NSIS you will have to create an installoptions page and then verify the appropriate info in the leave function of that page. If you need a more complex serial number verification you will have to make an NSIS plugin dll.

Vytautas
iceman_k#
To hide the names of the files you are installing, issue SetDetailsPrint none
in the Section before any File commands.
Afrow UK#
He wants to hide the messages from being printed above the progress bar.

Use
Section ""
SetDetailsPrint listonly
SectionEnd

Putting it in a hidden section (before all other sections) ensures that it will always be executed no matter what sections have been selected.

-Stu