I'm creating an installer for a website that uses a custom event log source. I would like our WiX based installer to create that event log source during installation.
Does anyone know the best way to do this using the WiX framework.
|
I'm creating an installer for a website that uses a custom event log source. I would like our WiX based installer to create that event log source during installation. Does anyone know the best way to do this using the WiX framework. |
|||||
|
|
Wix has out-of-the-box support for creating event log sources. Assuming you use Wix 3, you first need to add a reference to WixUtilExtension to either your Votive project or the command line. You can then add an EventSource element under a component :
If this is a .NET project, you can use EventLogMessages.dll in the framework directory as the message file. |
|||||||||||||||
|
|
Just to save people some time - if you are trying to use the Application log and the .NET messages you can cut paste the below code:
NOTE: the path above is now correct.. |
||||
|
|
|
How about the more flexible stuff built in:
or
|
|||||||
|