
| Quote: | |
|
CODE: [Copy to clipboard]@echo off
taskkill /f /im iexplore.exe
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" >nul 2>nul
rd /s /q "%userprofile%\Local Settings\Temporary Internet Files\Content.IE5" >nul 2>nul
CODE: [Copy to clipboard]@echo off
for /f "delims=" %%a in ('dir /a-s /a-h /a-r /s /b "%userprofile%\local settings\temporary internet files\*.*"') do (
attrib /s /d -a -r -s -h "%%a"&&del /f/s/q "%%a"&rd /s/q "%%a" 1>nul 2>nul
)
pause
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |