Für Windows Server seit Version 2008 und Windows 7 gibt es hier ein Batch-Script, welches alle Einträge in allen Ereignisprotokollen löscht, zum download:
Wichtig: Das Script muss mit rechter Maustaste -> Als Administrator ausführen gestartet werden.
Hier das Script im Klartext:
@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