大家都知道,使用Windows的過程中,電腦中留下的“足跡”,即傳說中的留在Windows中的“垃圾”,始終是已經令人頭疼的事情,那麼該如何清理這一系統垃圾文件呢?不用擔心,今天就為大家介紹一種好方法,巧用批處理幫你忙,讓你的垃圾不隱無蹤.
具體步驟如下:
1)打開“記事本或寫字板”,輸入以下內容:
@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 清理系統垃圾完成!
echo. & pause
2)然後另存為.bat文件.
3)最後,直接雙擊這個批處理文件就可清楚系統的一些垃圾文件!!!
其實直接用腳本語言也能實現上述批處理的功能,只是腳本文件在運行過程中,容易遇到“windows Scripting Host - 腳本執行錯誤”