Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove all events from the Application Event Log for just one source?

I'm using the application event log to write messages about activity happening in my program. I set the source to the name of my app. I would like to offer the user the ability to clear just the events related to my program. Is this possible? I only see a way to clear the whole log.

I'm using c# in .NET 2.0.


1 Answers

It is not possible to clear specific events from an Event log. It's clear all events or nothing.

like image 74
Moose Avatar answered Jan 01 '26 13:01

Moose