Skip to content
⌘ NSIS Forum Archive

uninstall log from extraction installation?

4 posts

empezar#

uninstall log from extraction installation?

hello, my installer exclusively downloads zip files and extracts them into $INSTDIR

i'm wondering if there's any way of logging these to a simple uninstall.log like with these functions

Afrow UK#
You'll need to extract the files to a temporary folder, loop through all files and folders recursively (use RecFind writing to $UninstLog: FileWrite $UninstLog "...$\r$\n"
and then Rename each file to its new location.

-Stu
empezar#
is there really no way of getting the filename & directory from either nsisunz or zipdll so i can make my own install.log during the unzipping?

this is really not a practical way of doing it
empezar#edited
i played around with nsisunz and found a solution

i used nsisunz:UnzipToStack