Skip to content

Instantly share code, notes, and snippets.

@vinhjaxt
Last active May 30, 2023 13:14
Show Gist options
  • Save vinhjaxt/d9a0391488da950da8fd5ce7d3f66a0b to your computer and use it in GitHub Desktop.
Save vinhjaxt/d9a0391488da950da8fd5ce7d3f66a0b to your computer and use it in GitHub Desktop.
Clear WinEVT Log
@echo off
WEVTUTIL EL > .\LOGLIST.TXT
for /f %%a in ( .\LOGLIST.TXT ) do WEVTUTIL CL "%%a"
del .\LOGLIST.TXT
timeout 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment