NewKreation
9th June 2005 15:11 UTC
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!
JohnDuran
9th June 2005 15:16 UTC
I don't think so, but you may use
DetailPrint "..." to print out each
Registry-Entry manually.
Regards,
John
Afrow UK
9th June 2005 17:41 UTC
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
NewKreation
9th June 2005 20:24 UTC
This is exactly what I wanted to do!
Thank you both :up: :up: