Windows Olay Günlüklerinin Toplu Silinmesi - How To Clear All Windows Event Log
Komut satırı ile toplu event log silinmesi için;
for /F “tokens=*” %1 in (‘wevtutil.exe el’) DO wevtutil.exe cl “%1”
Powershell ile toplu event log silinmesi için aşağıdaki;
Get-EventLog -LogName * | ForEach { Clear-EventLog $_.Log }
yada
wevtutil el | Foreach-Object {wevtutil cl “$_”}
.bat dosyası ile silmek için aşağıdaki komutu kullanabilirsiniz veya buradan indirebilirsiniz.
@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
exit