The event-log tag has no wiki summary.
0
votes
1answer
22 views
Multithread Windows Service
How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
0
votes
1answer
22 views
how to write on event log with other than “Application” as a log name?
I'm having a problem with making my VB.NET application point to something rather than "Application" in Event Log...
I create my custom event log using the function: ...
-3
votes
0answers
20 views
Hyperic Sigar - Windows Event Log reading (logs of applications and services) [closed]
we are using Hyperic Sigar for reading Windows event logs and it is working for normal event logs like Application, System, Security etc.
But now, we want to monitor also specific Applications and ...
-1
votes
0answers
13 views
Event Logging IPAddress does not resolve on Server 2012 [closed]
I am aware of
other stackoverflow post but in my case i am trying to use the event log on server 2012 to catch the IP address of failed log in attempts..
My event log is catching failed logon ...
0
votes
1answer
31 views
Windows EventLog - Event ID 0
I have a windows service app that uses the EventLog for logging. In the app installer I run:
eventcreate /L APPLICATION /SO "My App" /T SUCCESS /id 1 /D "Initialised Log"
Then in my application ...
0
votes
1answer
32 views
Reading event log from remote machine without passing credentials
I am reading the event log of remote machine using following code.
EventLog elog = new EventLog(logName, serverName);
I tried to access the log of other machine in my network without having access ...
0
votes
1answer
35 views
WinAPI LookupAccountSid from an .evt file
I'm trying to get the user account name of a user SID get from an .evt file (Event Log). Until now I have successfully read the file and I have access to the SID of the active user at the time the ...
0
votes
1answer
33 views
Filtering Windows logs using lambda expressions on non-IEnumerable types
I'm trying to get and filter Windows logs based on some criteria, one of which is filter by Message. The Message property is in EventLog.GetEventLogs().Entries.Message. The problem is Entries is an ...
0
votes
1answer
24 views
How to write Windows Event log records with non-existing source
Somebody gave me a testing program to write records into the windows event log (but I don't have the sources). I understand the general way of writing and reviewing event log, but that program behaves ...
0
votes
0answers
29 views
Set Buffer Size on EventLogEntryCollection.CopyTo
I have an application that reads in event log entries from various servers and returns them to a GUI. We recently moved our servers so now the latency in getting the event logs has increased ...
0
votes
0answers
16 views
Manual refresh of registered event sources
Does anyone know if it's possible to manually refresh the list of registered event sources in the Event Log?
Basically I want to remap an existing event source to a new event log programmatically but ...
1
vote
1answer
89 views
Programmatically get last boot/shutdown time
I'd like to get the exact time when windows was shut down and booted.
In c++ I'd simply use GetTickCount64 which retrieves the number of milliseconds that have elapsed since the system was started ...
1
vote
1answer
33 views
Eventlog Generated Time Format - Millisecond
i created an eventlog entry:
if (!EventLog.SourceExists("testeventlog"))
EventLog.CreateEventSource("testeventlog","testeventlog");
EventLog.WriteEntry("testeventlog", "testevent");
...
1
vote
0answers
57 views
Strange EventLog Behaviour on Windows Server 2008 R2
I'm using some very simple C# code to monitor the security event log of a domain controller 'live', so that I can capture account lockout events as they happen.
I have code that worked on 2003, but ...
0
votes
0answers
37 views
Event log on windows (C++)
I found an example on mdsn that gets all the data from the event log and subscribes to changes in zhurnle events. But I want to run the program so that it does not receive the data, and only subscribe ...
0
votes
1answer
65 views
Global.asax Not Writing to Application EventLog Source
I am having an issue in an HttpHandler when an exception gets thrown and handled by Application_Error() within my global application file (global.asax). I am trying to write the exception.Message in ...
0
votes
0answers
75 views
Writing to event log mvc iis7
I'm trying to write to the event log, but keep getting the same error:
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant ...
0
votes
0answers
42 views
VC++ Application memory size is increasing gradually?
I am new to VC++ programming. Please anyone tell me why the application size (private working set) is increasing gradually in below code.
Details about code: I am reading event on sever 2008 by using ...
3
votes
2answers
58 views
EventLogSession.ExportLogAndMessages query
I need to save windows event logs in some file, now i am using:
var els = new EventLogSession();
els.ExportLogAndMessages("Application", PathType.LogName, "*", Path.Combine("c:\\Application.evtx"), ...
2
votes
1answer
61 views
How to obtain event logs for particular application from Windows Event Viewer
I'm implementing an application that works similar to Windows Event Viewer. I mean that it monitors System Event Logs and Application Event logs with the help of EventLog and EventLogEntry classes.
...
0
votes
1answer
125 views
Restarting PC's and writing to the event log with a custom message
I have written a script in PowerShell that will remotely restart a list of PC's using the 'Restart-Computer' command.
Is there a way of adding a custom message to the systems event log, to explain ...
0
votes
1answer
77 views
Service on local computer started then stopped error
I have a windows service. It was working fine until I added code for it to begin logging. Now when I try to start the service I receive the following error:
The GBBService service on local ...
0
votes
0answers
53 views
Write to Event Log - The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security."
I'am trying to write some messages to Windows Event log.
The (security) exception will be thrown when calling function "SourceExists()".
private bool CheckIfEventLogSourceExits()
{
try
...
2
votes
1answer
104 views
Logging Windows Service
I have the following code for logging my windows service which I found through research online.
its done inside of my service class right before it is being initialized like below.
public ...
0
votes
0answers
40 views
How to make and save eventlog log file anywhere in your machine with NuGet Common Logging versiion 2.0 application?
I searched practically everywhere in the web and read many forums and Official NetCommon-reference of NuGet common.logging, but don't understand how to make and save eventlog file in my computer. I'm ...
0
votes
2answers
69 views
Enumerating special event logs in C# [duplicate]
I am trying to get a list of the "special" event logs in C#, like the "Microsoft\Windows\Audio\CaptureMonitor" log and all the others like it. They don't seem to be returned when I use ...
0
votes
1answer
176 views
Create Dynamic Path For SSIS Logging with SSIS log provider for Text files
hello i got trouble with Path destination of SSIS log provider for Text files
at first i use the path static like D:\\ but right now the path i want to get the path from sql table and put it on ...
1
vote
1answer
56 views
Write to Application log without creating a source
I would like to write to the default Application event log without creating an event log source automatically or through EventLog.CreateEventSource. The program may be run as a non-administrator, who ...
0
votes
1answer
39 views
Export eventlog, rolling file solution
We currently have an eventlog which we would like to export to a file at some point. I've currently set it up to something like this:
public static void ExtractLog() {
var logSession = ...
1
vote
3answers
159 views
How to implement event logger for ASP.NET web application?
I have an ASP.NET web application written with C#. It uses SQL Server 2008 database. It seems that some of the SQL queries are deadlocking the SQL server and I'm also experiencing bad SQL Server ...
0
votes
0answers
74 views
missing network information in event log for windows 7 client (Event ID 4625)
I have an application which will display event log of Security -> AuditFailurein c#, i am reading it with EventLogEntry class's Message property, i am testing it on Window server 2008 R2
When a ...
2
votes
1answer
94 views
Processing an event list in C#
I am implementing a state machine in C# and i am running into a problem. I have an event log, containing events and timestamps. When processing this, i get output with the following format:
Timestamp ...
0
votes
0answers
42 views
EventLogException: “The array bounds are invalid”
I'm attempting a very simple event log reader in C#. This is pulled almost directly from http://msdn.microsoft.com/en-us/library/bb671200.aspx
string LogSource = "Application";
string sQuery = ...
0
votes
0answers
25 views
EventLog MachineName = “.” Microsoft Patterns and Practices 5.505.5
Does that entry in the machine name attribute of an added listener mean that the event log will log to the event viewer on the machine on which the config file resides?
0
votes
0answers
118 views
Android event log message format - How to understand the binary data contained in the buffer?
Hi i want to know about event logs.. From this source i understood that event logs are in binary format. But how to read them? I mean i have the logger_entry structure pointer located inside memory. ...
1
vote
1answer
139 views
“Permission Denied” error when using WScript.Shell.Logevent
My environment is Classic ASP. I want to log an event to the Event Log (doesn't really matter which one). I have built a quick test (code below) and keep getting "Permission Denied".
const SUCCESS ...
1
vote
1answer
68 views
Querying a sql “event log” schema
Given this schema (in postgresql-9.2):
CREATE TABLE foo (
id serial PRIMARY KEY,
...other columns elided...
);
CREATE TYPE event_type AS ENUM ('start', 'stop');
CREATE TABLE foo_event (
id ...
2
votes
1answer
80 views
EventLogEntry.TimeGenerated returns totally wrong date
I've been writing a c# app which writes logs to a file on physical disk, but i've noticed a strange behavior of a TimeGenerated property - the local date on a computer is xx.xx.2056(don't ask why), ...
0
votes
1answer
196 views
How to clear “Applications and Services Logs” using Powershell?
Anybody has an idea how to clear "Applications and Services Logs" using Powershell? I can easily clear the Windows Logs using Clear-EventLog, but I can't get to clear a subfolder under "Applications ...
0
votes
1answer
227 views
what is win32_NTLogEvent time generated format
what is the meaning of eventlog time generated value in wmi "20061101185842.000000-000".
when i am using windows event viewer it gives the date and time format as " 2/13/2013 4:05:15 PM " but when i ...
1
vote
1answer
57 views
Error in reading event log reside in remote system
How can i read event logs residing at a remote computer on the same network using System.Diagnostics.EventLog in .net. it works fine if i give my own (local) computer name. But i don't know how to ...
0
votes
1answer
256 views
attempted to perform an unauthorized operation in event log of remote machine
When I am executing the following code to the local machine, it works fine:
string eventLogName = "Security";
string sourceName = "BTHUSB";
string machineName = "Venus";
EventLog eventLog;
eventLog ...
1
vote
2answers
128 views
Clean memory after using a large list of data in WCF Service
I have a WCF client and I connect to a WCF server hosted in a Windows service. In the service I read the last day entries from the Security event log. Then I parse the entries and create my own ...
0
votes
1answer
86 views
.Net / Windows Event Logs: How to keep specific logs when “Overwrite events as needed” is set
We have a VB.Net 2.0 application which logs a great many events.
As is usual practice, to stop the application failing when HDD space runs out we have the "Overwrite events as needed" option set.
...
1
vote
1answer
105 views
NCron default logger writes to Event Log, throws SecurityException
Simple NCron service:
class Program
{
static void Main(string[] args)
{
var schedService = new SchedulingService();
schedService.At("* * * * *").Run<MyTask>(); // run ...
0
votes
2answers
62 views
System.SecurityException error
when i compile the following code it shows the error as system.securityexception error.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ...
0
votes
0answers
94 views
Add IIS hosted WCF Service to Registry Editor to allow writing to Event Log
I have a WCF Service that is not able to write to the Event Log because it does not have permission to create the event source. I have followed the instructions on the MSDN site found here, however ...
1
vote
1answer
294 views
WCF Service not writing to Event Log
Below is the code I use to initialize the event log, and below that is a sample line of code I use to write to the log.
private string sSource = "DaVinci";
private string sLog = "WCF WebService";
...
0
votes
0answers
236 views
Exporting Windows Event Logs to CSV - Powershell 2.0
I have a requirement to export Windows Event logs to CSV from our production environment periodically.
I have a simple XML Config file containing a list of machines I need the events from, and a list ...
0
votes
0answers
137 views
Import Windows SCM.EVM files
I have developed a service and have noticed that the Windows Service Control Manager has been stopping and starting it up again at random.
To be able to diagnose this problem I need to be able to ...
