Questions tagged [event-viewer]

Event Viewer - tool in Windows systems that allows users to inspect the event logs.

Event Viewer - tool in Windows systems that allows users to inspect the event logs.

353 questions
0
votes
1 answer

win32_NTlogEvent query InsertionStrings property

I would like to accomplish something similar to: SELECT * FROM win32_NTlogEvent WHERE logfile = 'application' AND insertionStrings LIKE '%searchString' I know that insertionString is a string array. so I am unsure of how to access its values…
user3231051
0
votes
2 answers

Event Viewer , how to add a "task" to it programatically

I am currently writing Events Messages on to the event Viewer of the Operating system (windows 7), I am using c# & .net framework 4 When i use the front end to see the messages I have logged, I can see that there is a possibility through the front…
0
votes
4 answers

Extracting error logs from Windows event viewer

I want to create VBScript code to retrieve specifically error type logs from Windows Event Viewer, save them in a .txt file, and transfer it via FTP or just direct copy. How can I achieve this? I've been doing some reading and stumbled upon these…
0
votes
1 answer

Unable to reproduce error in event viewer

Recently i received below error in the production server's event viewer. It appear every 5-10 mins and come from different user host address. I tried to troubleshoot by clicking all the links in the default.aspx page but still unable to reproduce…
My2ndLovE
  • 397
  • 4
  • 18
0
votes
0 answers

Eventviewer doesn't show the event log from Application program

.Net4.0, Windows 7(64bit), C# Winform based application. Here is the method writing event log. However, there isn't shown event log on MS Eventviewer. Do you have any idea ? private static void WriteEventLogEntry(string message) { //…
Changju.rhee
  • 463
  • 3
  • 11
  • 26
0
votes
1 answer

Using ETW in ASP.NET 4.5.1, how do I get the Debug channel to show up in Event Viewer?

I am using the NuGet TraceEvent library. I am trying to write Level.Verbose events to the Debug channel; however, the Debug channel is not showing up in EventViewer. I have tried modifying the manifest to change the default enabled="false" to…
Jason
  • 4,897
  • 2
  • 33
  • 40
0
votes
0 answers

Windows Task Scheduler vbs file fails (but runs fine manually)

I'm using windows task scheduler to run the below script file on the event of an excel crash (application event 1000). If I run the script manually, the excel file 'E:\Test.xlsm' opens as excepted. However, when called from the task manager (on…
Yugmorf
  • 320
  • 1
  • 6
  • 20
0
votes
1 answer

WindowsService Exception Handling

I've webservice (on test machine) running as windows server. Sometimes it crashes (which is small problem).Big problem is when it crashes, there is very little information to know what happend. Smthg like this in eventviewer: EventType clr20r3, P1…
lew
  • 77
  • 4
  • 11
0
votes
1 answer

How do I set up a Custom View in Server Manager for a particular IIS Site ID?

I'm looking to set up a custom view for a particular site on our IIS, in this case, ID 28. I can get as far as creating Last 30 days, critical, error and warning by log (application) with the keyword 'Classic' which will pick up all our .Net…
A-Bop
  • 68
  • 1
  • 11
0
votes
0 answers

Error: "DLL is already started"

I have c# code and using c++ dll. When I start my application, It always give error in event viewer Error: "ABC.dll is already started."
0
votes
0 answers

MSSql Server messages blow up event log

My event viewer is blown up by tons of SQLSERVER messages. there is a new message approximately every second. The messages vary and are of different structures. Here are a few examples: **MSSQL$SQLEXPRESS** Category: Server Message: System…
Uri Abramson
  • 6,005
  • 6
  • 40
  • 62
0
votes
1 answer

Looking for windows event viewer system logs message templates , where can I get them?

I need to get hold of at least microsoft windows system events message templates , is there a place I can find those? a template for example : Windows cannot access the file gpt.ini for GPO…
Rotem Slootzky
  • 688
  • 10
  • 21
0
votes
1 answer

How do I identify duplicate logs in Microsoft EventViewer using XPath 1.0?

I have hundred of logs like the one which follows. I would like to avoid displaying duplicates by creating a custom filter in the EventViewer with XPath 1.0, using text contained in [EventData[Data]] as match pattern.
0
votes
2 answers

How to audit failure events for Windows security eventlog in C#

i need to access Audit Failure under Window log -> Security event instantly when it logs, is there any way to capture it instantly when it logs. i need to access real time attempts. currently i am reading this from EventLogEntry class in c#, but i…
user1523935
  • 87
  • 1
  • 1
  • 11
0
votes
1 answer

is the event log index unique

I am getting the information from the event log in windows with this: private void button1_Click(object sender, EventArgs e) { EventLog eventLog; eventLog = new EventLog(); eventLog.Log = "Security";; eventLog.Source = "Security-Auditing"; …
ErocM
  • 4,505
  • 24
  • 94
  • 161