WIN8垃圾文件快速清理,提高電腦運行速度。電腦運行久了常會變慢,這是由於在你的電腦中產生了許多垃圾文件,本文教大家一個比較快速的方法來清理Windows8系統緩存的垃圾文件。
電腦運行久了常會變慢,這是由於在你的電腦中產生了許多垃圾文件,本文教大家一個比較快速的方法清楚Windows8系統緩存的垃圾文件。
操作步驟
1、在Windows8桌面上按鼠標右鍵新建“文本文檔”。
2、復制以下代碼粘貼到記事本內。
@echo off
color 1e
for /r c: %%a in (*.tmp *.chk *.gid *._mp *.old *.bak *.log) do del /f /s /q "%%a"
for /r c:windowstemp %%a in (*.*) do del /f /s /q "%%a"
for /r c:windowsPrefetch %%a in (*.*) do del /f /s /q "%%a"
for /r %userprofile%AppDataLocalTemp %%a in (*.*) do del /f /s /q "%%a"
for /r "%localappdata%MicrosoftWindowsTemporary Internet Files" %%a in (*.*) do del /f /s /q "%%a"
for /r %localappdata%MicrosoftWindowsHistory %%a in (*.*) do del /f /s /q "%%a"
for /r %appdata%MicrosoftWindowsCookies %%a in (*.*) do del /f /s /q "%%a"
for /r %windir%SoftwareDistributionDownload %%a in (*) do del /f /s /q "%%a"
for /r "%windir%Downloaded Program Files" %%a in (*) do del /f /s /q "%%a"
for /r %windir%System32LogFiles %%a in (*) do del /f /s /q "%%a"
del /f /s /q %systemdrive%hiberfil.sys
pause & exit
這樣按任意鍵就退出了
3、將“記事本”後綴名改為“.bat”。
4、最後雙擊“.bat”運行文件即可。
win8垃圾文件快速清理,提高電腦運行速度由華彩軟件站為您最新收集整理,版權歸原作者或公司所有。如有侵權,請與我們聯系刪除。