Skip to content
⌘ NSIS Forum Archive

Show Registry Installation Details

4 posts

NewKreation#

Show Registry Installation Details

During installation, I am using
ShowInstDetails show
to show installation details. However, the only items that appear in the list are the files and directories that were added.

Is there a way to show the registry additions too?

Thanks in advance!
Guest#
I don't think so, but you may use
DetailPrint "..." to print out each
Registry-Entry manually.

Regards,
John
Afrow UK#
If writing multiple registry entries, you could use a macro:

!macro WriteRegStr Root Key Name Value
WriteRegStr ${Root} "${Key}" "${Name}" "${Value}"
DertailPrint "Write registry: ${Name}"
!macroend
!define WriteRegStr "!insertmacro WriteRegStr"
-Stu