Windows Log Clearing
@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 All Event Logs have been cleared!
goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
echo Current user permissions to execute this .BAT file are inadequate.
echo This .BAT file must be run with administrative privileges.
echo Exit now, right click on this .BAT file, and select "Run as administrator".
pause >nul
:theEnd
ExitAbove
.batscript will clear all windows logs, make sure to run with admin privileges!If you use the .bat script (see above) and it is blocked
Unblock All Files in a Folder in PowerShell - (without confirmation prompt)
OR
(with confirmation prompt)
cmd.exe
One liner
powershell.exe
One liner
OR
OR
Manual
Last updated
