empezar
3rd April 2006 01:01 UTC
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
http://nsis.sourceforge.net/Uninstal...nstalled_files
Afrow UK
3rd April 2006 08:54 UTC
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
6th April 2006 16:37 UTC
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
6th April 2006 17:28 UTC
i played around with nsisunz and found a solution
i used nsisunz:UnzipToStack