古詩詞大全網 - 四字成語 - Windows臨時文件

Windows臨時文件

因為它們是“臨時文件”嘛~不靠它們內存和硬盤怎麽傳輸數據啊~不用理會它們,定期處理就行了,不礙事的

妳可以在關機的時候處理啊

寫批處理最方便了

@echo off

echo 正在清除系統垃圾文件,請稍等...... 啟程

del /f /s /q %systemdrive%\*.tmp

del /f /s /q %systemdrive%\*._mp

del /f /s /q %systemdrive%\*.log

del /f /s /q %systemdrive%\*.gid

del /f /s /q %systemdrive%\*.chk

del /f /s /q %systemdrive%\*.old

del /f /s /q %systemdrive%\recycled\*.*

del /f /s /q %windir%\*.bak

del /f /s /q %windir%\prefetch\*.*

rd /s /q %windir%\temp & md %windir%\temp

del /f /q %userprofile%\cookies\*.*

del /f /q %userprofile%\recent\*.*

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"

del /f /s /q "%userprofile%\Local Settings\Temp\*.*"

del /f /s /q "%userprofile%\recent\*.*"

echo 清除系統LJ完成!

echo. & pause

存到記事本裏,然後擴展名改為.bat,關機的時候運行壹下,垃圾輕松搞定

祝您好運!