Quick and easy way to delete your Event Viewer Logs in Windows 7. @echo off for /F “tokens=*” %%G in (‘wevtutil.exe el’) DO (call :clear_it “%%G”) echo. echo Event Logs have been cleared! ^<press any key^> goto fin :clear_it echo %1 – CLEARED wevtutil.exe cl %1 goto :eof :fin pause>NUL Note: You must run this [...]
Filed under: Command Line, Microsoft, Windows 7 | Tagged: clear, event viewer, logs | Leave a Comment »