Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
5k views

How do you create an event log source using WiX

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 ...
15
votes
10answers
9k views

What is the most reliable way to create a custom event log and event source during the installation of a .Net Service

I am having difficulty reliably creating / removing event sources during the installation of my .Net Windows Service. Here is the code from my ProjectInstaller class: // Create Process Installer ...
6
votes
2answers
263 views

Windows Event IDs

Is there a specific range of Event IDs in Windows reserved for application developers? I'm working on a .Net application that will write errors to the windows event log. This application actually ...
2
votes
1answer
49 views

How to find if event source is created?

I am using the sample code to create event source: <DirectoryRef Id="TARGETDIR"> <Component Id="RegistryEntries" Guid="PUT-GUID-HERE"> <util:EventSource Name="Training ...
2
votes
3answers
671 views

Setup project for a windows service and the event log

I got a setup project that installs a windows service. We are registering a event log source in a custom log which should be used by the winservice project (how and why is not important). My problem ...
2
votes
2answers
123 views

Can I count on this ASP.NET event log source always being registered?

Unhandled exceptions cause ASP.NET-based applications to unexpectedly quit in the .NET Framework 2.0 makes me think that an event log source named with the following convention will always be ...
2
votes
1answer
185 views

How can I remove all events from the Application Event Log for just one source?

I'm using the application event log to write messages about activity happening in my program. I set the source to the name of my app. I would like to offer the user the ability to clear just the ...
2
votes
5answers
210 views

An event log source that's always available for writing?

Is there an event log source that's always available for writing by an ASP.NET webapp? Backstory, in case anyone has a seemingly unrelated solution: Our ASP.NET webapp uses its own event log source, ...
1
vote
0answers
92 views

In Windows, what default event sources are available in the Application Event Log?

Short Version: Are the event sources "Application" and "Application Error" always included in the Application Event Log? Are they available on new installations of Windows XP, Vista and Windows 7? ...
1
vote
1answer
203 views

Windows event log service holding executable file handle

I have a service application that on startup and shutdown logs an event log record. I rebuild the application frequently and also then the executable on the host machine. And here is the problem, ...
1
vote
1answer
679 views

WIX: Create EventSource using .NET message file

I'm creating an installer for my application using WIX. Everything works fine so far. However, I'm trying to create a new event source during installation and that doesn't work as expected. I've ...
1
vote
2answers
3k views

How to read the Windows Event Log without an EventMessageFile?

I have code that reads the Windows Event Log. It uses OpenEventLog, ReadEventLog and gets the event source and event ID. Then it looks up the source under the ...
0
votes
1answer
45 views

How long does it take for new Log Sources to take effect?

The EventLog.Source Property docs on MSDN state: Create the new event source during the installation of your application. This allows time for the operating system to refresh its list of ...
0
votes
0answers
86 views

how to write to event application log from Outlook 2007 add-in

I have a deployed add-in that targets Outlook 2007 which causes an APPCRASH in Outlook.exe. This works on my development machine but fails badly when deployed to other PCs. It calls a webservice which ...
0
votes
2answers
447 views

Cannot open log for source {0} on Windows 2003 Server

I am having a huge problem with the eventlog on my server. Right let me first of all explain the setup. I have a domain setup with 2 computers One computer is running IIS the other is a workstation. ...