Como limpar o log de eventos administrativos
O log de Eventos Administrativos (listado em Exibições Personalizadas) no Visualizador de Eventos é um Filtro que contém todo o evento dos logs de eventos do Sistema, Segurança e Aplicativo.
Você pode limpar esses registros individuais ou usar as instruções abaixo para limpar todos os registros de eventos.
Para limpar todos os logs de eventos no Visualizador de Eventos no Windows
cmd
shell solution :
Open an elevated command prompt.
Run the following command:
for /f "tokens=*" %1 in ('wevtutil.exe el') do wevtutil.exe cl "%1"
The event logs will now be cleared and the
cmd
shell can be closed.
PowerShell
solution:
Open an elevated Windows PowerShell.
Run the following command:
wevtutil el | Foreach-Object {wevtutil cl "$_"}
The event logs will now be cleared, and PowerShell can be closed.
Fonte Como limpar todos os registros de eventos no Visualizador de eventos em Windows
Para limpar os logs individuais do Visualizador de Eventos no Visualizador de Eventos
Press the +R keys to open the Run dialog, type eventvwr.msc, and click OK.
Select a log (example: Application) that you want to clear in the left pane of Event Viewer, and click on Clear Log in the far right Actions pane.
OR
Fonte Como limpar todos os registros de eventos no Visualizador de eventos em Windows