【問題】請教清理磁碟工具對暫存檔案刪除判斷方式





rain
2008-10-06, 09:31 AM
環境:Win XP SP2

透過清理磁碟工具勾選暫存檔案,發現清除後還是殘留一堆暫存檔再TEMP資料夾,而且殘留的還可以手動刪除

請教清理磁碟工具是做了什麼判斷,還會造成留下一堆暫存檔呢?

話說Temporary Internet Files有也有此現象,清空了裡面還佔滿好幾百MB的資料,清理磁碟工具是清假的嗎 @@

謝謝




billeccentrec
2008-10-06, 01:21 PM
CClearner
http://www.ccleaner.com/
微軟內建的東西
從來不會想去用(除了小畫家)

hysz
2008-10-06, 03:17 PM
CClearner
http://www.ccleaner.com/
微軟內建的東西
從來不會想去用(除了小畫家)

我也推薦這一個,很不錯歐,功能強大、而且免費的~你可以試試看!

rain
2008-10-08, 01:08 PM
謝謝推薦

想說清理磁碟是根據什麼法則清垃圾,清到還留一堆垃圾

難道他會垃圾分類 :eye:

billeccentrec
2008-10-08, 09:18 PM
----- 風涼話 -----
這就是微軟
很難知道他在做什麼

如果有一隻PPC
就會更清楚微軟
----- 風涼話 -----

如果真的想探究
還是放棄吧
去做其他事比較值得

vicacheung
2008-10-09, 10:31 AM
以下存為BAT檔,運行。。。
@echo off
pause
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