Archive: Advanced Uninstall Log - Uninstaller details


Advanced Uninstall Log - Uninstaller details
I'm using the Advanced Uninstall Log NSIS header (http://nsis.sf.net/Advanced_Uninstall_Log_NSIS_Header) but i'm having the following issue: when uninstalling the application, the details window does not display what files are beeing deleted. Above the details list is displayed the files search, but it could be interesting for me to see at the end of the unistallation what was deleted.

How could I display the deleted files inside the detail list?

Many thanks.


I've attached a screen shot of the described behavior.


I've found what was the problem.

The SetDetailsPrint command is set to "textonly" by the Locate function inside FileFunc.nsh.

I've updated the header locally in a way that before deleting files, the SetDetailsPrint is set to "both" and after that set it again to "textonly" - in this way the details listbox will have only the informations about the deletion of files or folders.