The tag has no wiki summary.

learn more… | top users | synonyms (2)

62
votes
16answers
81k views

System.Security.SecurityException when writing to Event Log

I’m working on trying to port an ASP.NET app from Server 2003 (and IIS6) to Server 2008 (IIS7). When I try and visit the page on the browser I get this: Server Error in ā€˜/’ Application. ...
38
votes
3answers
9k 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 ...
36
votes
6answers
60k views

How to create Windows EventLog source from command line?

I'm creating an ASP.NET application that will log some stuff to Windows EventLog. To do this an event source has to be created first. This requires administrative priviledges so I cannot do it in the ...
20
votes
11answers
14k 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 ...
19
votes
2answers
38k views

c# writing to the event viewer

I'm trying to write to the event viewer in my c# code, but I'm getting the wonderful "Object reference not set to an instance of an object" message. I'd appreciate some help with this code, either ...
15
votes
2answers
17k views

The source was not found, but some or all event logs could not be searched

I am getting the following exception. I have given full control to Asp.net account on Eventlogs in Registry edit. [SecurityException: The source was not found, but some or all event logs could ...
14
votes
5answers
7k views

Writing Exceptions to the Windows Log File

I'd like to catch my exceptions and log them in the Windows log file. How do I go about opening and writing to the Windows log?
14
votes
2answers
12k views

Deleting Custom Event Log Source Without Using Code

I have an application that has created a number of custom event log sources to help filter its output. How can I delete the custom sources from the machine WITHOUT writing any code as running a quick ...
14
votes
3answers
13k views

Description for event id from source cannot be found

When I write a log into windows event log, I get the event below, what's the root cause of this message, and how can I fix it? Many Thanks The description for Event ID 51001 from source RRWS ...
10
votes
5answers
6k views

What is the Fastest way to read event log on remote machine?

I am working on an application which reads eventlogs(Application) from remote machines. I am making use of EventLog class in .net and then iterating on the Log entries but this is very slow. In some ...
10
votes
2answers
2k views

What are best practices for event id management?

I'm trying to figure out how to manage my event ids. Up to this point I've been putting each event id in each method manually with each step in a method numbered sequentially. This doesn't allow me ...
9
votes
8answers
6k views

How to troubleshoot .NET 2.0 Error Reporting messages in the event log?

I work on an open source product called EVEMon written in C# targeting the .NET 2.0 platform, I have one user who is suffering from a strange .NET crash that we have been unable to resolve. Event ...
9
votes
6answers
10k views

What is the best way to write event log entries?

I recently had a problem during the deployment of a windows service. Four computers did not cause any problems, but on the fifth any attempt to start the service failed due to an exception. The ...
9
votes
2answers
8k views

What do I need to change to alllow my IIS7 ASP.Net 3.5 application to create an event source and log events to Windows EventLog?

ASP.Net 3.5 running under IIS 7 doesn't seem to allow this out of the box. if (!EventLog.SourceExists("MyAppLog")) EventLog.CreateEventSource("MyAppLog", "Application"); ...
9
votes
2answers
535 views

How do I create a hierarchy of lognames in the Windows event system?

I am logging messages using Enterprise Library. I want some of these (typically errors and warnings) to be passed to the Windows event-system). I today route these via entlib.config. This ...
7
votes
2answers
4k views

NLog: can't write to event log

I can't write to the event log with NLog. I've been able to write to the console and to a file. I've turned on exceptions in NLog and am receiving no feedback from NLog. Here is my NLog.config: ...
7
votes
2answers
1k views

High Performance Event Log C#

So I've been trying various ways to get Event Log data in bulk (1000+ records/second). I need something that can filter out old logs, right now I store the last recorded event record ID and retrieve ...
7
votes
2answers
1k 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 ...
6
votes
1answer
5k views

Security exception when writting to an EventLog from an ASP.NET MVC application

I have a library that I created with some business logic that includes writing to a System.Diagnostics.EventLog instance. The library is normally called from a Windows Service application, but now I'm ...
6
votes
2answers
913 views

Why use ETW over EventLog and vice versa?

Why should I use Event Tracing for Windows (ETW) over the standard .NET EventLog class, and vice versa? Does knowing that we'll be using quite a few performance counters impact the decision? What I ...
6
votes
1answer
1k views

Is there a way to write to the windows event log in C?

I have a requirement to modify a simple windows service written in win32 C (not c++). Is there a library I can use to write event log entries to the windows event log without using eventcreate.exe? ...
6
votes
1answer
5k views

Configuring a custom event log for log4net

I'm using log4net for logging (duh!). Using the EventLogAppender, I can configure my application name, so that my events will show up in the Application/"My Application Name" event log. However, I'd ...
6
votes
2answers
5k views

Does one need to manually create a Windows event log source when installing a Windows service

I have developed a Windows service in C#. I have created a installer with Visual Studio 2008, which installs the Windows service. Everything is good so far. I want to make sure that the event source ...
6
votes
1answer
518 views

Create EventLog source in WiX without an event message file

I've seen a few questions here and there about creating event log sources using WiX. What puzzles me is why util:EventSource/@EventMessageFile is required. It's annoying having to specify it when you ...
6
votes
2answers
3k views

What event id to use for my custom event log entries?

Is there any ranges of valid event IDs which should be used by custom applications while logging to Windows EventLog? Or I can use any event ID of my choice (1,2,3,4....). P.S, I am developing in ...
6
votes
2answers
2k views

Detect manual time change and daylight savings time events in windows events log

I would like to detect during my C# application run-time a manual change of the system time and date and automatic daylight savings time change. Moreover I am looking for a way to detect these ...
6
votes
2answers
5k views

Windows EventLog Permissions

What permissions do I need to give a User for them to be able to write to the Windows EventLog? I have an ASP.NET application that needs to impersonate a user and that impersonated user must be able ...
5
votes
3answers
3k views

C# EventLog Inaccessible Log

Below is an exception I encountered while running the immediately following code: The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security. The ...
5
votes
2answers
2k views

Receiving “…has already been registered…” from EventLog.CreateEventSource even though I'm checking !EventLog.SourceExists

My following code fails with "...has already been registered as a source on the local computer" even though I'm doing checks first: lock ( eventLock ) { string eventLog = Constants.EventLogPL; ...
5
votes
4answers
4k views

Which approach is better to read Windows Event log in C#? WMI or EventLog

I need to write an application to grab event log for System/Applications. The other requirement is that I need to read event log every minute or so to grab the new event logs since I read last time. ...
5
votes
4answers
3k views

How to store event log in Folder

On an ASP NET project (C#) I'm using the System.Diagnostics namespace to log errors, warning and information. Using Windows 7 I see that the log I've set for the project is under "Applications and ...
5
votes
1answer
965 views

EventLogReader Remote Performance

I am using the EventLogReader to query remote 2008 servers for events. The performance of querying the events on a remote machine is horrible (6/sec). If I query the same machine via WMI using a ...
5
votes
1answer
2k views

Can I list all registered event sources?

My windows service writes to the event log, but I've had various problems getting this correct. So in the process I used a number of different names. I followed an article describing how to set up ...
5
votes
5answers
4k views

Unhandled IIS Exception - How can I track it down

I am seeing the following error in the event log. It is coming from our ASP.Net application. I am having trouble tracking down what is causing the error. Any suggestions appreciated! OS: Windows ...
5
votes
4answers
12k views

How to view Windows Event Log remotely with limited privileges

To debug some code, I would like to view the Windows event log of a remote machine (target is Windows2003). With mmc.exe I can add the event log for a remote machine, but only if I have sufficient ...
5
votes
2answers
259 views

Is it acceptable to write to the Application Event Source?

There are certain circumstances in our application where non-fatal errors occur and the application recovers. An example of this failing to correctly identify some importable items when populating ...
5
votes
1answer
535 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? ...
5
votes
1answer
153 views

Can an Outlook addin write to the system event log?

I have an outlook add-in developed with VSTO 2010 that I want to write some event logging. While debugging I can get this to work by simply doing the following: if ...
4
votes
3answers
3k views

How do I avoid this SecurityException when writing to the Event Log?

I can't seem to write to the event log in .NET. I get the following exception: System.Security.SecurityException: The source was not found, but some or all event logs could not be searched. ...
4
votes
4answers
2k views

(Windows) Exception Handling: to Event Log or to Database?

I've worked in shops where I've implemented Exception Handling into the event log, and into a table in the database. Each have their merits, of which I can highlight a few based on my experience: ...
4
votes
2answers
303 views

EventLog - Get available logs

Using the following code, I'm able to display all entries listed under the "Application" log: EventLog appLog = new EventLog(); appLog.Log = "Application"; appLog.MachineName = "."; foreach ...
4
votes
4answers
832 views

How could I log that a Windows service is terminating because of a system shutdown?

I have a diagnostic version of a service that logs as much as possible in the OnStart() and OnStop() methods. One event that I am unable to capture is when the computer is physically restarted. My ...
4
votes
2answers
123 views

When to log into the windows event log?

So far all my applications have been logging to files only. It works fine for me and I never had any problem with it. A friend of mine suggested I could also use the Windows Event log but I am not ...
4
votes
2answers
1k views

log4Net eventlog permissions issue using non-administrator account

This probably isnt an issue with SiteCore per se but I've included it for completeness. I have sitecore 6.3 running under IIS7 using a custom identity for the app pool. I cant get Sitecore to write ...
4
votes
2answers
2k views

How to open saved event log archive in .NET?

I have used the System.Diagnostics.EventLog to view the logs on the local computer. However, I would like to open a saved event log archive (.evt or .evtx) and view the logs that are contained in the ...
4
votes
1answer
2k views

Using XPath starts-with or contains functions to search Windows event logs

By editing the XML filter query manually in Windows event viewer, I can find events where the data matches a string exactly: <QueryList> <Query Id="0" Path="Application"> <Select ...
4
votes
3answers
982 views

ASP.NET application not logging to the windows event log

I have two ASP.NET MVC web applications. One of them logs unhandled exceptions to the windows event log. The other doesn't. Is there a setting in IIS or the web.config to enable event log logging? ...
4
votes
3answers
1k views

Log errors in EventLog using ELMAH

I am using ELMAH to log errors in my asp.net MVC(C#) application. I am able to log errors in xml or database. How to log errors to the eventlog using ELMAH?
4
votes
4answers
2k views

How to find out more about Application Hang event?

If a VB6 app is causing an Application Hang event to appear in the Event Viewer, how can I find out more about why the application is hanging? Does an Application Hang event mean that the app has ...
4
votes
2answers
3k views

Event Logging in C# on Windows 7/ 2008 Server

i am trying to make an event logger for my cmd line application. However I get this error when it tries to create the log for the first time. The source was not found, but some or all event logs ...

1 2 3 4 5 12