@
echo off
title Windows Temp File Cleaner
color 5f
echo.
echo.
echo Please Close All Programs Before You Continue!!
echo.
echo.
echo.
pause
cls
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Recent\*.*"
del /f /s /q "%userprofile%\Local Settings\History\*.*"
del /f /s /q "%userprofile%\Cookies\*.*"
del /f /s /q "%appdata%\Microsoft\Office\Recent\*.*"
del /f /s /q "%userprofile%\~*.*"
del /f /s /q "%WINDIR%\Prefetch\~*.*"
IF EXIST "%windir%\KB*.log"
del /f /q "%windir%\KB*.log"
IF EXIST "%windir%\Q*.log"
del /f /q "%windir%\Q*.log"
exit