你知道當你使用你的作業系統一段時間後,系統上其實會生出一些莫名其妙的垃圾檔案嗎?
這些垃圾檔案可能是來自於瀏覽網頁的暫存檔,也可能是你使用了某一套軟體它所生出來的暫存檔。
這些對我們而言,它已經沒有繼續保存的必要了。所以下面就提供這一段code來讓你可以方便的去刪除你系統上一些不必要的檔案。
使用方法:
Step 1:新增一個純文字檔,並將其附檔名改為.bat
Step 2:將下面的code複製至該檔案內。
Step 3:點兩下執行它。
系統將會開始自動開始刪除檔案摟~~
是不是很簡單呢?
刪除完可能會多出許多的空間唷~~
試試看吧!~~
@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
沒有留言:
張貼留言