|
解決方法:製造清除系統垃圾器。
製造步驟很簡單,請看下面。
桌面→右鍵→新增記事本。
開啟之後,貼上我↓面的文字,分隔線不用貼,分隔線就是_這條,如還聽不懂。
請貼上藍色字體
--------------------------------------------------------------------------------
echo off
echo 正在清除系統垃圾文件,請稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
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
後面檔名絕對要為.bat
這樣你的垃圾清除器,就製作成功!
建議每天開啟一次,給他清除,跑完後隨便按一個鍵他就會自動消失 |
|