Tagged Questions
-3
votes
0answers
21 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 ...
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
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
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
90 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 ...
0
votes
0answers
38 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
198 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
257 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
0answers
95 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 ...
0
votes
0answers
139 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 ...
0
votes
1answer
54 views
Inject events in the event viewer in an old date
I need to inject some event in my event viewer in an old date, how event viewer data are stored, and can I change it?
** EDIT **
I need it to know that if any one, In any way can fool me and do that?
...
0
votes
1answer
42 views
Is Deleting Event log that danger?
I have an application, which keeps track of some logs since its installation time.
Since the system log may be huge, my application's performance is too bad if the log is too large, but if we cleared ...
0
votes
1answer
229 views
How to read event log without administrative permissions in .NET?
I need to read from the security log in windows, but the user will not have the administrative permissions to do so, and the application will throw an exception,
EventLog[] a = ...
0
votes
1answer
207 views
Channel Names for ETW Providers
I'm trying to get my Event Tracing for Windows (ETW) provider manifest to register the proper channel names. When I use the manifest (included below) I get the following results. However, when I ...
0
votes
1answer
104 views
How to know or change the size of the Windows Event Log from a program under Windows XP? [closed]
I ran into a weird problem on a Windows XP system. My local service app logs its diagnostic messages into the Windows Event Log, so at some point those messages stopped being logged. I thought that ...
0
votes
0answers
57 views
Do Application and System Eventlogs have SID?
I am currently working on retrieving Eventlogs in Windows.
Whenever i retrieve the Application or System Eventlogs, i do not get an SID and hence i cannot find the username. I opened the Eventviewer ...
0
votes
3answers
553 views
Query windows event log for the past two weeks
I am trying to export a windows event log but limit the exported events not according to number but according to time the event was logged. I am trying to do that on windows 7 and newer. So far my ...
0
votes
1answer
216 views
Missing Event Viewer descriptions
I am creating an new installation package for one of our products and I'm having significant trouble getting the event message description DLL to be used by Windows to provide event descriptions to ...
0
votes
0answers
156 views
Handling Windows wevtutil renderedxml errors
When using the Windows command line tool wevtutil with the /f:renderedxml option to review Application logs, I will sometimes see output like:
Failed to render Event. Event handle = 0x00000008.. ...
0
votes
1answer
289 views
Is there a history for regsvr32 stored in the event log?
I am trying to submit a bug report to a project and I need to look up what dll was registered with windows today to include it in the report. (Running another program that registered a DLL fixed the ...
2
votes
1answer
211 views
How to log an event as Critical using WriteEvent
I am trying to set an event level as Critical using the below method:
WriteEvent(id, categoryName, EventSeverity.ErrorCritical, entry);
But in the event log it only show event level as Error ...
0
votes
1answer
159 views
Reading Windows Event Payload Including Complex Data
In my previous question here I posted the xml I am trying to serialize.
Here is another XML example:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
...
2
votes
1answer
833 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 ...
0
votes
0answers
297 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 ...
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 ...
0
votes
0answers
140 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 ...
-1
votes
1answer
787 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
271 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 ...
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?
1
vote
2answers
434 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?
4
votes
2answers
119 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 ...
0
votes
1answer
2k views
Wevtutil to output event log description
Is there anyway to only output the description field in an event log entry?
Im current using:
wevtutil qe Application /q:*[System[(EventID=431)]] /f:text /rd:true /c:2 /gm:true > C :\query.txt
...
1
vote
0answers
141 views
Enable event logging MS Office 2010
How can I enable event logs for opened session from MS Office 2010 ? MS Office 2007 make event logs in Microsoft Office 12 Sessions (OSession).
0
votes
1answer
308 views
Create folder in windows event viewer using C#
In my current installer I am creating event log for each application version. Doing so there are lots of events created for each version. Searching for correct event log is bit difficult for clients. ...
1
vote
1answer
321 views
Can one Process signal the event created by another process under different username(both process running under different username) ?
Happening in Windows 7:
I have installed process proc1.exe as service.In the proc1, i am creating new process proc2.exe by creating session id and token and passing to CreateProcessAsUser().
In the ...
0
votes
1answer
289 views
Local System account event log permissions
Does anybody know of a way I can check what permissions the Local System account has with the Application event log? There is no CustomSD at ...
5
votes
3answers
2k 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 ...
4
votes
1answer
1k 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 ...
0
votes
0answers
77 views
Event Logs for Remote Share BruteForce
This command is used to access remote shares.
net use \10.31.247.2\share /user:admin password
Is there any way to detect(EventLogs) if someone is trying to BruteForce into a remote system using ...
0
votes
0answers
173 views
Pull any machine specific information from Windows audit log?
This is a follow up to this question.
I followed the accepted answer and thought I was satisfied with the results but ran into a roadblock.
The Setup
I'm running my C# program from the server that ...
0
votes
0answers
40 views
Log to a file that can be opened with the event viewer
Is their a way (Preferably using logging application block) to write log to a file in such a way that it can be opened using the event viewer?
3
votes
1answer
2k views
Application Event log exceeding maximum allowed count
Somehow, the Application Event log count ended up to 18,446,744,073,709,551,499. This causes MMC snap-in to fail when I want to see the event using Event Viewer, giving a System.OverflowException ...
2
votes
1answer
808 views
Windows Service output not showing up in Event Log
I am trying to follow this walkthrough.
I'm using Visual Studio 2010 Premium.
The only events I see in Server Explorer or in Event Viewer are "Service started successfully." and "Service stopped ...
0
votes
1answer
911 views
Logging in Windows Event Log in Unmanaged C++
I know that I can use ReportEvent method to write event logs in windows. But it seems to me that this method is useful for logging events prior to Windows Vista and 7 event log changes. For example, I ...
0
votes
1answer
2k views
Custom event log in Windows 7 [closed]
How can I create a custom event log in Windows 7?
(Not programmaticly, with some UI).
Thanks,
Ilan.
0
votes
0answers
68 views
Deep copy of EVT_HANDLE
I have EVT_HANDLE from EvtSubscribe API, how can I make EVT_HANDLE deep copy.
Becuase of previous design of my code I need to make deep copy of this handle. Previously I was using PEVENTLOGRECORD ...
0
votes
1answer
210 views
EvtSubscribe Pull Vs Push Model
I am trying to use following api from windows.
EVT_HANDLE WINAPI EvtSubscribe(
__in EVT_HANDLE Session,
__in HANDLE SignalEvent,
__in LPCWSTR ChannelPath,
__in LPCWSTR Query,
__in ...