Archive: how to use Dumlog


how to use Dumlog
Hi,

I red AppendixC.html#C and the thread about the Dumplog Script. I tried to use this one, but it don't works. The Name of the Logfile should be "Update.log", but I don't know, how to specify this name in the Script.

thanks

-timecop


I'm again ;-) I'm just a newbie, please help.

I dont't understand how to "push a file name":
- - - - - - - - - - - - - - - - - - - - - - - -
This function will dump the log of the installer (installer details) to a file of your choice. I created this function for Afrow_UK who requested a way to dump the log to a file in this forum thread.

To use it push a file name and call it. It will dump the log to the file specified. For example:

Save this script

GetTempFileName $0
Push $0
Call DumpLog


You need to do it like this:

Push "$INSTDIR\Update.log"
Call DumpLog

The OutputWindow content will be dumped to "$INSTDIR\Update.log"

-Stu


Thank you.

It works fine. :up: I use MUI_CUSTOMFUNCTION_INSTFILES_LEAVE for call.

-timecop