The Market Ticker
Rss Icon RSS available
Fact: There is no immunity or protection against The Law of Scoreboards.
Did you know: What the media does NOT want you to read is at https://market-ticker.org/nad.
You are not signed on; if you are a visitor please register for a free account!
The Market Ticker Single Post Display (Show in context)
Top Login FAQ Register Clear Cookie
User Info Reality Meets Hype, Film At 11; entered at 2023-11-15 12:36:40
Ajkalian
Posts: 223
Registered: 2015-09-16
Microsoft Windows is Spyware plain and simple, always has been.
In Version 7 there were about 500 Event Logs.
In my Windows 10 there are over 1,146 Event Logs.

They have an extension of .EVTX and are stored in: C:\Windows\System32\winevt\Logs

And if you want to take a look at each of the Event Logs download Event Log Explorer from here:
https://www.eventlogxp.com


If you want to clear all of them, open up a CMD window as administrator and run this script.

FWIW, I do this once a day since I have never needed to use any information contained in any of the event logs.



goto around.this
:: Created by: Shawn Brink
:: Created on: August 15th 2016
:: Updated on: July 25th 2018
:: Tutorial: https://www.tenforums.com/tutorials/1658....

:around.this
@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 Event Logs have been cleared! ^
goto theEnd

:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof

:noAdmin
echo You must run this script as an Administrator!
echo ^

:theEnd
pause>NUL




.

Last modified: 2023-11-15 13:08:54 by ajkalian

2023-11-15 12:36:40