The tag has no wiki summary.

learn more… | top users | synonyms (2)

0
votes
2answers
1k views

Elevate user to Admin level to write to Eventlog in .NET

I am working on a Windows .NET application and I want to write to the Eventlog. Public Shared Sub WriteExceptionToEventLog(ByVal message As String) Dim cs As String = "TESTLOG" Dim ...
0
votes
0answers
95 views

How to read TaskScheduler event logs?

I cant find TaskScheduler logs with System.Diagnostics.EventLog class. Code: EventLog.GetEventLogs().Select(el => el.Log); Output: Application HardwareEvents Internet Explorer Key Management ...
0
votes
0answers
75 views

While trying to create Event source on a remote machine I always get an error message “Unauthorized Access”

Using the below code to create the Event source remotely, would always give me the error "Attempted to perform an unauthorized operation." . EventSourceCreationData sourceData = new ...
0
votes
0answers
50 views

Escape Characters to Event log?

I'm attempting to write to my Application event log using: HANDLE h = Advapi32.INSTANCE.RegisterEventSource("localhost", "eclipse"); String[] buffer = { "Testing \r\n %n right now" }; ...
2
votes
1answer
848 views

Read Specific Windows Event Log Event

I am working on a program and need ot know how I would read a specific entry to the Windows Event Log based on a Record number, which this script will already have. Below is the code I have been ...
1
vote
1answer
83 views

DRY for constants used both in .NET code and web.config

I have a Web app which requires a custom installer (to be run using installutil) that registers an event source for the event log. This installer code includes a constant (specifically, the name of ...
0
votes
0answers
300 views

Event log message size 31885? Windows 2008

We recently upgraded our production boxes to Windows 2008 from Windows 2003 servers. Everything works fine except the event logging. We log at max 32000 bytes of data for each message On 2008 ...
3
votes
1answer
895 views

Example of source for NTEventLogAppender?

I'm trying to learn how to log from java eclipse to event viewer and I've read the api, various sites and similar questions on stack overflow. But when I follow the steps I always get: Exception in ...
0
votes
1answer
976 views

Get the location of windows event log files

We are using EventLog to log exceptions. there is a background thread which check once the eventlog get full and programmaticaly transfers the entries into an XML file and then clear the event log. ...
0
votes
0answers
98 views

Accessing the event handler information outside SSIS [closed]

Is there a way to access the event handler information apart from the log tables in SSIS? For example, you can access the event handlers in SSIS on each task and package levels and write out the ...
1
vote
2answers
58 views

Accessing Event Log from application registered in GAC

I've .dll which is registered and executed from Global Assembly Cache. When I try to access Event Log EventLog.SourceExists("source name") I'm getting an error: The source was not found, ...
1
vote
2answers
198 views

EventLog - errors during write

I use Event log like that: if(!EventLog.SourceExists("Service")) EventLog.CreateEventSource("Service","Sending notification email error"); ...
0
votes
1answer
233 views

How can I solve a TypeInitialization exception in my app when deployed?

My app runs fine on my machine (of course/famous last words). However, when deploying it to another machine on the network, it won't even start up. I ran my EventLog utility on that machine and it ...
0
votes
2answers
345 views

Log4Net won't create custom event log in event viewer

My WPF app uses Log4Net to record messages to the event viewer. This is working great on most machines. However, there are two machines in my office where there are problems. One is a physical ...
0
votes
1answer
613 views

How can I programmatically determine the description of an Event ID

I wrote a utility that allows me to view EventLog messages, filtering on their types, when they were written, etc. I see that I have had the following entry a gazillion times (give or take a few) in ...
0
votes
3answers
370 views

Can log4net entries be queried?

I know I can write to the EventLog and query it. I would like to implement the ability for the user to select a menu item that will query all Warning and Error msgs connected to my app and send those ...
0
votes
2answers
236 views

Windows Event Viewer Error Code After Crash

Error code 10000050, parameter1 e60c0000, parameter2 00000001, parameter3 bf04963f, parameter4 00000001 I have a computer that is repeatedly blue screening and this is the only error in the ...
2
votes
1answer
68 views

Capturing program debug event messages

I'm trying to capture a debug event message from an in-house developed application using Python. I have looked at using win32event and other features in PyWin32. The process will be launched with ...
1
vote
1answer
1k views

Windows Server 2008 Task Scheduler: Trigger XML Syntax for email notification task isn't triggering based on failure events from another task

Scenarios I need to solve with task scheduler in Windows Server 2008: (#1) task A tries to run a program > task A succeeds and runs the exe file > task B looks at events of task A and emails ...
1
vote
2answers
559 views

Enable Windows Event Log by Managed Code (.NET) / Command Line

Is there a programmatic way which allows me to enable an EventLog if it was disabled by default? In short, I just need to know if I can enable a specific EventLog so that I can use the events ...
1
vote
0answers
60 views

How to assign multiple log for EventLog

I am using EventLog class to get event log from system using below code EventLog myLog = new EventLog(); myLog.Log = "System"; //myLog.Log = "Application"; ...
0
votes
0answers
228 views

Querying all event from a .evtx file only returns the last 976

I'm attempting to query all events from an Event Log file but I am only getting the last three days woth (976) Here is the code if anyone can help: using (var reader = new EventLogReader(new ...
1
vote
4answers
169 views

WindowsEventLogs not logged on Azure

I have an Azure WebRole with the following code: public override bool OnStart() { setDiagnostics(); TestClass test = new TestClass(); return base.OnStart(); } private void ...
0
votes
0answers
141 views

pushing windows event logs to syslog receiver

I have installed SNARE in the domain controller. I have configured it to push the windows security events to a remote Syslog Receiver. But the issue is in snare monitor if someone logoff single logoff ...
0
votes
2answers
847 views

How to access event log from window azure

I would like to fetch window event logs from Azure webrole's instance. when i connect to RDP of instance then by Event viewer i am able to see Window Event Logs of "Application" & "Error" type. Is ...
0
votes
1answer
225 views

EventLogs using Silverlight

Is there a way to access the event logs of a server (or the local machine for now) using Silverlight and C#? The EventLog class is not available in Silverlight due to the System.Diagnostics namespace ...
-1
votes
1answer
794 views

Improve performance of reading event log

I am queries event log of different domain controllers, I have to keep querying that after some time interval. Below is the code I am using to query it. public static void FindAllLog(string ...
0
votes
1answer
275 views

Event 1014: Name resolution for the name xyz.database.windows.net timed out after none of the configured DNS servers responded

I'm connecting to an Azure SQL database using ASP.NET on W2008R2. In the Event Log I'm getting "Name resolution for the name xyz.database.windows.net timed out after none of the configured DNS ...
0
votes
3answers
992 views

powershell: get-winevent has no messsage data?

When I run the script below to retrieve log files, the get-winevent "message" field is blank but has data if I run get-eventlog. Any ideas why? #has message data Get-Eventlog -LogName application ...
2
votes
3answers
2k views

How to write event log category

As we know, we can use the class EventLog to write event logs, but I am confused about how to write category name in my event log. Thoug it provides the category parameter, for example, one of the ...
1
vote
2answers
68 views

What options exist for working with Windows Event Logs?

What APIs and endpoints are available for working with Windows Event Logs? What APS's are new/different in Windows Vista and newer?
9
votes
2answers
531 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 ...
1
vote
1answer
2k views

PowerShell: Monitor multiple server event logs every minute

I am working on a PowerShell script that will monitor a list of servers every minute and trigger on a specified event. While my script isn't completed, this is what I have so far; $TimeAgo = ...
0
votes
1answer
232 views

Detect EventLog permissions before calling EventLog.SourceExists

I want to log to the Application event log from an ASP .NET app. I want to call EventLog.SourceExists to determine if an event source exists firstly and if not create it. As documented on MSDN ...
1
vote
2answers
574 views

PowerShell version 1.0 - Write to the event log

We have a client with PowerShell 1.0. I know in PowerShell 2.0, I have the Write-EventLog commandlet. However, this doesn't appear in PowerShell 1.0. I want my script to log events to the event log, ...
1
vote
1answer
133 views

Unable to set EventIDs using Common.Logging and NLog

Has anyone figured out how to leverage Common.Logging to set the EventLog ID when wrapping NLog? I have it working beautifully under NLog, but had trouble figuring out how to do it with ...
0
votes
2answers
140 views

powershell 2.0 unable to get Internet Explorer logs

When I try to run cmd get-eventlog -list on win2003 std in powershell V2.0. It gives me the following output Max(K) Retain OverflowAction Entries Log ------ ------ -------------- ...
0
votes
1answer
439 views

How can i filter Windows Events retrieve with an XPATH where a certain value is a substring of the value?

Windows Events have an ability to filter by XPATH (which is a fast search). I have sucessfully using the PowerSHell Cmdlet Get-WinEvent filtered where a specific value is a specific value as shown ...
1
vote
1answer
679 views

Powershell: filtering event logs

Ive written a small script to retreive event logs from application for the last 10 days but i receive the error. Any ideas why the error appear? Where-Object : Cannot bind parameter ...
0
votes
1answer
2k views

Powershell: Cannot convert 'System.Object[]' to the type 'System.String'

When I run the following code i receive the message "cannot convert 'System.Object[]' to the type 'System.String'". How do i pass the event log list back to get-eventlog? $EventLogList = ...
1
vote
2answers
445 views

Eventlog listener - Applications and Services

Is there a way to watch events of "applications and services" when they are generated (in C#)? I've figured out that I can not use WMI for it. Any other ideas?
3
votes
3answers
210 views

Processing events from Event Log and react on a certain pattern (Rx?)

I need to process events coming from the EventLog. This is easy using the EventLogWatcher attaching to the EventRecordWritten event. However the query I am interested in (eventid == 299 || eventid == ...
4
votes
2answers
120 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
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
1answer
233 views

When inserting log events the TimeCreated field is not accurate enough

I'm trying to do application logging to the windows event log in c# with .net framework 4, but when I insert the log entries the TimeCreated field (Event viewer -> Windows Logs -> Application -> -> ...
0
votes
1answer
661 views

Use C# to gather event logs from a specified time period

Does anybody know if its possible to save the windows event logs from a given time interval as a text file with C#? For example say I want to save the System event logs from between 10 - 11 am in a ...
0
votes
2answers
637 views

IP address shows as a hyphen for failed remote desktop connections in Event Log

I am trying to figure out why failed remote desktop connections (from Windows remote desktop) show the client ip address as a hyphen. Here is the event log I get when I type the wrong password for an ...
1
vote
1answer
611 views

Reading event logs saved to XML format from .Net

I'm trying to read an event log saved as an XML file from .Net / C#, the event log xml format looks (approximately) like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> ...
1
vote
1answer
487 views

PHP gzuncompress with file read and write errors

I have a function that keeps track of events that happen through out the script. In an effort to use my resources effectively, I decided to compress the data that it generates. However, I keep getting ...
6
votes
2answers
907 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 ...

1 2 3 4 5 12