I'm trying to create an Event Log and Event Source at install time using Wix. The install doesn't fail or give any error...but I don't see any Event Log called MyApp getting created.

      <PropertyRef Id="NETFRAMEWORK40FULLINSTALLROOTDIR"/>


      <Component Id="EventLog" Guid="AD09F8B9-80A0-46E6-9E36-9618E2023D67">
        <util:EventSource Log="MyApp" Name="MyApp" EventMessageFile="[NETFRAMEWORK40FULLINSTALLROOTDIR]EventLogMessages.dll" />
      </Component>

I previously had a .NET Installer class that did this and it worked without a problem.

What am I doing wrong?

link|improve this question

I think you have an issue. This will work for a 32 bit OS - not a 64 bit OS. I think you should use NETFRAMEWORK40FULLINSTALLROOTDIR64 for 64 bit. Don't you think? – Morten Frederiksen Mar 1 at 8:25
feedback

1 Answer

up vote 0 down vote accepted

Can you post an installer log? The EventSource element is really just some syntatical sugar. WiX translates these into simple registry keys/values and I've never seen it fail in any of the installs I've used it in.

link|improve this answer
It looks like the log file doesn't show up until the first event is written to it. As in, my code doesn't fail writing to it and the event source exists in the registry...but it doesn't show up in the Event Viewer UI....does that make any sense? – JeffN825 Sep 27 '11 at 4:53
I've never heard of that. I'd make sure your application doesn't have any code in it that's initializing the log. I've seen developers doing this assuming that will run with elevated permissions. The logfile I spoke of was the Windows Installer log of running the install. – Christopher Painter Sep 27 '11 at 11:53
Oh sure....here is the relevant line in the installer log: – JeffN825 Sep 27 '11 at 13:12
WriteRegistryValues: Key: \SYSTEM\CurrentControlSet\Services\EventLog\AppCo\App, Name: EventMessageFile, Value: #%C:\Windows\Microsoft.NET\Framework\v4.0.30319\EventLogMessages.dll – JeffN825 Sep 27 '11 at 13:12
Looking at the code that used to do the job, I don't see anything about that dll in the registry...it has a absolute file path to an evt file listed in the registry... – JeffN825 Sep 27 '11 at 13:14
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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