Normally, to enable logging, you'd say msiexec ... /l*v [or any other combination].
You can also enable logging all products via the registry tweak.

Note that these are all outside actions, in a sense that the wxs script is not the one specifying the logging options.

Is there a way to control logging from within the wxs script? Preferably to a folder like INSTALLDIR\Logs?

Is this a good practice? I know uninstalling will leave the Log folder behind, unless I clean it up somehow.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can request a log verbosity level with the MsiLogging property. However, you can't control where the log is created and both level and location are overridden by anything the user specifies.

link|improve this answer
This seems promising. The article mentions MsiLogFileLocation which can be used to specify the default path. Doesn't that work? I understand if the user overrides, then so be it but otherwise, this would suffice to enable default logging, right? – Mrchief Aug 23 '11 at 18:35
Nope. MsiLogFileLocation "is set" -- by MSI. (It's a bad doc topic, as it doesn't specify. Most other topics in the MSI SDK use "the installer sets the value" to indicate read-only properties.) – Bob Arnson Aug 23 '11 at 19:14
Is it possible to specify the logging via a bootstrapper exe (that launches msi with the log options)? – Mrchief Aug 24 '11 at 21:14
Yes and bootstrappers can use API functions like MsiEnableLog. – Bob Arnson Aug 24 '11 at 22:01
Thanks for your inputs! – Mrchief Aug 25 '11 at 15:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.