Tagged Questions
0
votes
1answer
46 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
0answers
40 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
211 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
2answers
80 views
Is there an equivalent of System.Diagnostics.EventLog for C++?
I need to change the parameters of the Windows Event Log from a C++ code, and namely what is available via the System.Diagnostics.EventLog class in C#. I need to read and later possibly modify the ...
0
votes
1answer
84 views
Writing to the Windows Security Log with C++
I have been tasked with writing entries to the Windows security log. The entire project is Win32 C++ code. I have already written (with help from various online resources) a logging class that handles ...
1
vote
0answers
49 views
How can I register app with * in the name for the event log?
I'm trying to register my Windows local service that has an asterisk (*) in the name in the event log. I follow instructions here and then the call to RegisterEventSource with that name succeeds and ...
0
votes
1answer
344 views
How to map Windows Event Log Event level to a string
Windows event logs are different at below Vista (XP and below) and Vista and up, see here Windows Event Logs . On Vista and up, on the event viewer, we could see a column called Level. If we filter ...
0
votes
1answer
289 views
How to retrieve all the event logs at the Windows XP?
As we know, windows event logs are different at below Vista (XP and below) and Vista and up, see here Windows Event Logs . On Vista, I am able to understand the API about how to retrieve all event ...
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?
2
votes
1answer
167 views
Is a separate message file library for my native Win32 service necessary?
We've got an old legacy win32 service, developed with C++, and we've just recently noticed that when the service starts up and stops, there is an informational message in the event logs about our ...
0
votes
1answer
212 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 ...
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 ...
1
vote
1answer
67 views
EvtOpenChannelEnum access denied
I'm calling EvtOpenChannelEnum after having gotten a valid session handle with EvtOpenSession. EvtOpenSession worked, but EvtOpenChannelEnum is returning access denied (GetLastError = 5).
Why ...
2
votes
2answers
830 views
Windows: ReportEvent function
As far as I understood, the ReportEvent function requires Message Text Files associated through the registry to receive properly formatted messages. Is there any common Event Ids or any simple way to ...
0
votes
1answer
226 views
EventLog. Unload EventMessageFile (DLL)
I install NT service and add info about 'message.dll' file into registry for EvenLog.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MyApp
EventMessageFile = ...
0
votes
1answer
1k views
Get event viewer logs with win api in c++
My application need to save event viewer logs to a specified directory and it has to be done with win api. Application and System logs are required.
EDIT: EvtExportLog - I found out that I can't use ...
0
votes
1answer
605 views
Event IDs don't match what is displayed in Event Viewer
In the System event log is an event with the following details:
Source: Kernel-General
Event ID: 1
Details: The system time has changed to 2010-07-17T02:58:20.285000000Z from ...
2
votes
1answer
136 views
EvtArchiveExportedLog fails with ERROR_DIRECTORY
I need to export some events from Windows Event Log to XML on Windows Server 2008 R2. To achieve it I export these events to a file using EvtExportLog and then try to use EvtArchiveExportedLog to get ...
0
votes
1answer
268 views
Unable to retrieve the complete description string of the event log record
I have an MFC application that reads and displays event log records using the ::ReadEventLog() API. The problem is with reading the "Description" message string of the event log record. The MFC ...
1
vote
1answer
372 views
RegisterEventSource returns NULL, error code is zero
Sometimes when I call RegisterEventSource(), it returns NULL. GetLastError() returns 0.
The event log is on a remote machine in the same domain, and the user is an admin in the domain. This happens ...