Archive: Show Registry Installation Details


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!

I don't think so, but you may use
DetailPrint "..." to print out each
Registry-Entry manually.

Regards,
John


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

This is exactly what I wanted to do!

Thank you both :up: :up: