- @echo off
- mode con cols=50 lines=15
- echo 10秒后即将进行清理,请先关闭浏览器
- ping -n 10 127.1>nul 2>nul
- cls
- echo 清理中,请稍后。。。
- del /f /s /q %temp%\*.* >nul 2>nul
- del /f /s /q "%userprofile%\locals~1\tempor~1\*.*" >nul 2>nul
- del /f /s /q "%systemdirve%\recycled\*.*" >nul 2>nul
- del /f /s /q "%systemdrive%\*.log" >nul 2>nul
- del /f /s /q "%userprofile%\recent\*.*" >nul 2>nul
- del /f /s /q "%userprofile%\cookies\*.*" >nul 2>nul
- del /f /s /q "%userprofile%\locals~1\history\*.*" >nul 2>nul
- echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\TypedURLS" >nul 2>nul
- echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\internet settings\5.0\cache\extensible cache" >nul 2>nul
- cls
- echo 清理完毕,按任意键退出
- pause>nul
复制代码
|