Mui cache and totally system event cleaner

Hi all, my suggestion is to add a MUI cache cleaner for windows 7 x64 ( cc cleaner not clear it ...and i don't kow why .... for now i use MUICacheView v1.01 to read and delete the MUI cache)

and totally system event cleaner is very usefull! now i use a batch file, that i found on my internet search and works very well, here is the code

@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! ^<press any key^>

goto theEnd

:do_clear

echo clearing %1

wevtutil.exe cl %1

goto :eof

:noAdmin

echo You must run this script as an Administrator!

echo ^<press any key^>

:theEnd

pause>NUL

I hope that it will be added in the future, bye.

Others will have a different point of view to me, but I don't like the idea of cleaning event logs as they are far too helpful for troubleshooting.

They self-clean when they get to a certain size anyway.

Welcome to the forum snapx.