added files and folders

This commit is contained in:
2023-03-05 21:08:50 -06:00
parent 68e1aeeb19
commit bd986b58f0
124 changed files with 2510 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
@echo off
rem IF /I "%EVENTVIEWER%" NEQ "Y" GOTO END
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo All Event Logs have been cleared!
goto end
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:end
pause