marchnew 發表於 2009-5-20 10:49:32

30秒清除你電腦中的垃圾-----使你電腦急速如飛



要輕鬆流暢上網你是否注意到你的電腦系統磁片的可用空間正在一天天在減少呢?是不是像老去的猴王一樣動作一天比一天遲緩呢?

 沒錯!在Windows在安裝和使用過程中都會產生相當多的垃圾檔,包括暫存檔案(如:*.tmp、*._mp)日誌檔(*.log)、臨時幫助檔(*.gid)、磁片檢查檔(*.chk)、臨時備份檔案(如:*.old、*.bak)以及其他暫存檔案。特別是如果一段時間不清理IE的暫存檔案夾“Temporary Internet Files”,其中的緩存檔有時會佔用上百MB的磁碟空間。這些LJ檔不僅僅浪費了寶貴的磁碟空間,嚴重時還會使系統運行慢如蝸牛。這點相信你肯定忍受不了吧!所以應及時清理系統的LJ檔的淤塞,保持系統的“苗條”身材,輕鬆流暢上網!朋友來吧,現在就讓我們一起來快速清除系統垃圾吧!!下面是步驟很簡單就兩步!

 
在電腦螢幕的左下角按“開始→程式→附件→記事本”,把下面的文字複製進去(紅色部分),點“另存為”,路徑選“桌面”,保存類型為“所有檔”,檔案名為“清除系統LJ.bat”,就完成了。記住尾碼名一定要是.bat,ok!你的垃圾清除器就這樣製作成功了!

雙擊它就能很快地清理垃圾檔,大約一分鐘不到。

======就是下面的文字(這行不用複製)
@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
=====到這裏為止(這行不用複製)
以後只要雙擊運行該檔,當螢幕提示“清除系統LJ完成!就還你一個“苗條”的系統了!!到時候再看看你的電腦,是不是急速如飛呢?可別忘了回帖喔!

注:LJ就是垃圾的意思!這招比那些所謂的優化大師好用!最重要的是無論在公司默認的系統環境還是在自己家中的電腦都不會破壞系統檔

[ 本帖最後由 marchnew 於 2009-5-21 18:02 編輯 ]

hidabin 發表於 2009-5-20 13:08:32

回覆 1# marchnew 的帖子

@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

hidabin 發表於 2009-5-20 13:13:12

上篇是程式碼主要內容
marchnew大大PO文中的
del /f /q %userprofile%\小甜餅s\*.*
應該可修正為
del /f /q %userprofile%\cookies\*.*

不然系統裡的cookies依然會存在
另外,懶的弄的發短消息跟我講,我再寄給大家就好,不過要有留E-MAIL信箱阿。

要寄信的可以寄到 dabin317@yahoo.com.tw

[ 本帖最後由 hidabin 於 2009-5-20 13:18 編輯 ]

jackyang45 發表於 2009-5-20 14:56:49

謝謝以上的各位大大慈悲
小弟執行程式
跑了三分鐘
所以請大家注意
一定要等到'清理系統垃圾完成"才算ok

jackyang45 發表於 2009-5-20 15:09:58

請教以上各位大大
為什麼再執行一次會出現以下文字
{程序無法存取檔案因為檔案正由另一個程序使用}
這是正常的?
還是需要更改

hidabin 發表於 2009-5-20 15:22:28

回覆 5# jackyang45 的帖子

基本上第一次都會比較久因為要清除的東西很多
所以應該是還沒跑完

所以真的要等""清除系統垃圾完成! ""出現

marchnew 發表於 2009-5-20 16:52:12

回覆 2# hidabin 的帖子

呵呵,學習了,因為我用翻譯字典弄的,所以會有小甜餅 = cookies,已改正了

marchnew 發表於 2009-5-20 16:53:22

因為程式還沒有跑完呢,當然沒辦法繼續執行阿

雪花大爆 發表於 2009-5-21 15:01:01

大彬    有空來幫阿姐清一清吧.....................

偶~~~~~~~~~~懶的看完

marchnew 發表於 2009-5-21 15:25:33

回覆 9# 高園牧場 的帖子

懶的弄的人請給我E-mail , 我會寄給你的 , 檔名會是LJ.bat
頁: [1] 2 3
查看完整版本: 30秒清除你電腦中的垃圾-----使你電腦急速如飛