Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
53 views

I have been trying to minimize the logs sent to SIEM by filtering them at the source. You can find the filter I used below. It is long. Instead of using a long <Select> statement with inverted ...
Zafer Balkan's user avatar
0 votes
3 answers
771 views

I have quite a usual for every sysadm in task: to audit access to certain folders on fileserver during last, e.g. 1 day. But in addition I need to rule out access attempts from certain processes. What ...
GregoryA's user avatar
0 votes
1 answer
1k views

An EventLog was exported from a server to a file named Exported_ErrorLog.evtx. I would like to filter all entries created in 2023 group by Text <EventData><Data> (see xml below) and count ...
surfmuggle's user avatar
  • 6,040
-2 votes
1 answer
1k views

The event logging service encountered an error while processing an incoming event published from Microsoft-Windows-Security-Auditing. None of my process creation event is being logged. All these logs ...
Selva Kumaresan's user avatar
0 votes
0 answers
434 views

It is about to collect logs of event viewer from the remote machine.I have tried Event Logging api so far. Though,It works well by reading logs from the localhost,was failed to read from remote ...
Shyaam sundar's user avatar
1 vote
2 answers
205 views

Does anyone have an idea why the '.NET Runtime' Event source does not behave like a normal event source? var logCheckOne = EventLog.Exists(".NET Runtime"); var logCheckTwo = EventLogSession ...
Bitfiddler's user avatar
  • 4,212
0 votes
1 answer
594 views

Can anyone tell is there any inbuilt module or way to fetch the event traces from event viewer in angular 2+ ? Like how we use system diagnostics Eventlogs extension to fetch traces in c#. Thanks in ...
Naveen's user avatar
  • 5
0 votes
1 answer
2k views

I am trying to read windows event logs for: "Microsoft-Windows-Sysmon/Operational" I tried: string eventLogName = "Microsoft-Windows-Sysmon/Operational"; EventLog eventLog = new ...
Rahul's user avatar
  • 21
0 votes
1 answer
481 views

I need the to write a log message and capture that in PerfView. I would like to avoid using EventLog or EventSource because they are quite invasive: they require registering a new source or ETW ...
fernacolo's user avatar
  • 7,469
0 votes
1 answer
432 views

I am admin on my local machine. However the app I am creating (an outlook VSTO addin) will be deployed by a deployment admin to users who won't have admin. The app installs correctly. My issue is ...
Sniipe's user avatar
  • 1,326
0 votes
1 answer
149 views

I’m trying to write a simple event log but i confront with “System.Security.SecurityException: The source was not found...” and i searched a lot but couldn’t find an efficient solution, I really ...
S.Katuzian's user avatar
0 votes
1 answer
3k views

I'm trying to read a stored .evtx with the EventLog Class from System.Diagnostics. but it doesn't work. Isn't it possible to read a stored evtx file with EventLog Class or where is the problem? ...
flaeckli's user avatar
  • 100
1 vote
1 answer
3k views

The command-line EventCreate.exe tool registers a user-defined event source in the Registry for the Windows Event Log Viewer to use, like this: eventcreate /t INFORMATION /ID 100 /L "Application" /SO ...
Remy Lebeau's user avatar
2 votes
0 answers
2k views

I have created a custom event log and would like all my applications to write to the same event log. As you can see below in the image attached, DistributedCOM and Svc Ctrl Mgr are 2 sources writing ...
Akshatha's user avatar
  • 652
0 votes
1 answer
424 views

The Microsoft EventRegister Tool creates an instrumentation manifest file along with a resource file during project compilation. I would like to move those files to another path after compilation and ...
BdN3504's user avatar
  • 1,753
0 votes
1 answer
2k views

I can fetch latest 5 events generated by MsiInstaller from Event logs with - wevtutil qe Application /rd:true /f:text /c:5 /q:"*[System[Provider[@Name='MsiInstaller']]]" But the output is too ...
A_N's user avatar
  • 137
-2 votes
1 answer
44 views

I am writing error to event log but when i checked for leakage i got event log leakage in .net profiler, Do I need to dispose this object? Is it will create any issue in multi threading? public ...
Sreetha K's user avatar
1 vote
1 answer
978 views

I am looking for a way not to use Message Files, as I don't want the mess that comes with it. I would like to be able to write events using a method similar to public void WriteEvent(...
Northern Pole's user avatar
1 vote
2 answers
3k views

In the project installer i am creating a custom event log. But when my service starts my all logs are going to the "Application" instead of my cuustom log. Below is the code which i have added to ...
Mehwish's user avatar
  • 21
0 votes
1 answer
115 views

Is it possible, for example to have a source "MyApp" and register it to Application eventlog and another custom eventlog?
Legends's user avatar
  • 22.9k
0 votes
1 answer
925 views

I am newbie to windows administration. Recently got an alert describing, "unable to log events to security log and status codes is 0x0" So far I identified that the exception could be due to the ...
anu thankachan's user avatar
1 vote
1 answer
636 views

While creating a project using Windows Service VS2013 project template i noticed that after add an EventLog component from the tools box the #region named "Component Designer generated code" is filled ...
user avatar
0 votes
0 answers
53 views

I am getting a very strange exception and am having quite a bit of trouble tracking it down. I'm not sure how much good posting it here will do, but I figured it would be worth a shot. On software ...
Tim's user avatar
  • 2,911
1 vote
1 answer
1k views

In my VB.NET application, I created a new Event Log Name named "My_Log", and I have this application run for a number of different situations where each situation is named by a unique name, and on ...
Anas Mousa's user avatar
1 vote
2 answers
3k views

I'm trying to select all event log entries beyond a certain date. So far I think I got equals, but I don't know how to change this to greater than the specified date... so close yet so far! <...
codeputer's user avatar
  • 2,020