讓你的電腦速度變快吧!簡單好用的電腦系統清道夫!!

是否查覺電腦系統的硬碟內的可用的容量一天一天逐漸往下掉呢?

是否感受到執行程式時,電腦的動作越來越緩慢呢?

Windows安裝和使用過程中都會產生許多系統垃圾文件,在開啟Word、Excel等臨時文件最能感覺的,例如(*.tmp.*.mp)、記錄檔暫存的(*.log)、臨時幫助文件(*.gid)、磁碟檢查文件(*.chk)、臨時備份文件(*.old、*.bak)及其他臨時文件。

特別是如果一段時間不清理IE內部的臨時檔暫存記錄「Temporary Internet Files」,內部緩存文件有時候會因為瀏覽一段時間後,那些暫存檔會吃掉硬碟上好幾百MB甚至上GB的碟碟空間。

而這些文件不單單是浪費了你硬碟寶貴的空間,更嚴重時還會使系統運行速度變慢像蝸牛一樣,執行一步卻delay好幾秒鐘呢!所以趕快來清除這些系統垃圾吧!!

打開「記事本」,然後將底下有用的程式碼內文字複製到記事本內,點選「另存新檔」,把文件名定義為「清除系統垃圾.bat」,名字不重要,就是記得適時的開啟檔案作電腦清潔吧!

clip_image002

@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

要記得,另存檔案時,後方副檔名的位置要記得存成.bat檔!它是一個批次檔,批次檔就會依照命令在檔案中出現的順序,依序被執行,存好後你的系統垃圾清除器就完成啦!!

Be the first to comment

Leave a Reply

Your email address will not be published.

*