當前位置:首頁 » 硬碟大全 » 批處理刪除電腦緩存文件
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

批處理刪除電腦緩存文件

發布時間: 2022-04-01 02:04:11

Ⅰ Win8如何使用批處理刪除緩存文件

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」運行文件即可。

Ⅱ 如何寫一段BAT代碼自動清理電腦緩存

@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\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp"
rmdir /s /q "%userprofile%\Local Settings\Temp"Data\Default\Cache"
rmdir /s /q "%userprofile%\Local Settings\Temporary Internet Files"
echo 清理系統垃圾完成!
echo. & pause

/*將以上復制到記事本保存為 a.bat雙擊運行即可*/

Ⅲ 有誰知道所有清除垃圾,系統,緩存文件的bat文件

深度論壇找的代碼,請粘貼到txt文件然後另存為bat文件,即可使用(記得選所有類型)。

@echo off
Title 深度[Deepin] Windows7系統垃圾快速清理
color 0a
mode con cols=55 lines=16
echo.
echo.
echo.
echo 歡迎使用 深度 Windows7系統垃圾快速清理工具
echo.
echo.
echo.
echo 按任意鍵開始清理垃圾文件......
echo.
pause>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Tmp文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.tmp" /d /s>nul 2>nul
attrib -r -a -s -h "%systemdrive%\*._mp" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.tmp">nul 2>nul
del /f /s /q "%systemdrive%\*._mp">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理日誌文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.log" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.log">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Gid文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.gid" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.gid">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Chk文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.chk" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.chk">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Old文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.old" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.old">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理回收站....
echo.
attrib -r -a -s -h "%systemdrive%\recycled\*.*" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\recycled\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理備份文件....
echo.
attrib -r -a -s -h "%windir%\*.bak" /d /s>nul 2>nul
del /f /s /q "%windir%\*.bak">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理文件使用痕跡....
echo.
attrib -r -a -s -h "%windir%\prefetch\*.pf" /d /s>nul 2>nul
del /f /s /q "%windir%\prefetch\*.pf">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Cookies文件....
echo.
attrib -r -a -s -h "%userprofile%\cookies\*.*" /d /s>nul 2>nul
del /f /q "%userprofile%\cookies\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理上網產生的臨時文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temporary Internet Files\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理臨時文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temp\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temp\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理用戶歷史文件....
echo.
attrib -r -a -s -h "%userprofile%\recent\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\recent\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo 清理系統垃圾完成!
echo.
echo.
echo.
echo 按任意鍵退出......
pause>nul
exit

Ⅳ bat刪除IE緩存,批處理求優化

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
這句是清除當前帳號下的臨時文件夾

del /f /s /q "C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files\*.*"
這一句是清除樓主所指定的臨時文件夾

Ⅳ 用什麼批處理命令才可以把IE瀏覽器緩存徹底刪除

在桌面上點滑鼠右鍵,選擇新建一個「記事本」或「文本文檔」,把下面的字復制進去,點「另存為」,把文件名定為「清除系統LJ.bat」就完成,記住後綴名一定要是.bat,好ok了!你的垃圾清除器就這樣製作成功了!雙擊它就能很快地清理垃圾文件,大約一分鍾不到。
@echo off
echo 正在清除系統垃圾文件,請稍等......
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 清除系統垃圾完成!

瀏覽器緩存(Browser Caching)是為了節約網路的資源加速瀏覽,瀏覽器在用戶磁碟上對最近請求過的文檔進行存儲,當訪問者再次請求這個頁面時,瀏覽器就可以從本地磁碟顯示文檔,這樣就可以加速頁面的閱覽。但如果積累太多會導致電腦內產生垃圾文件。

Ⅵ 一鍵清理電腦垃圾.bat的時候刪除瀏覽器緩存的文件嗎

貌似刪的,還附帶刪除系統緩存文件~

Ⅶ 如何建個批處理清除tmp文件

只清理TMP文件的:
@echo off
del /f /s /q %temp%\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.*
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*

網上有些其他的清理,太狠,例如清理log文件,可能會把某些反安裝的軟體日誌給刪掉,造成無法卸載,建議別刪掉太多。主要是臨時目錄和IE緩存。
其實還有就是病毒軟體的定義(有些軟體會保留很多歷史文件)這個你得根據不同軟體來自己找到具體目錄,再按上面辦法製作。

Ⅷ 這個清理系統緩存批處理清理緩存有些不足,不知道是否可以在加幾項

能成了已經

Ⅸ 求清除上網緩存及臨時文件的批處理

net stop "task scheler"
@echo off
color 0f
mode con cols=83 lines=3
title 歡迎您使用
echo 正在為您清除系統垃圾文件,請稍等......
taskkill /F /IM conime.exe
echo 正在清除系統臨時文件 *.tmp *._tmp *.log *.chk *.old conime.exe,請稍等...
del /f /s /q %systemdrive%\conime.exe
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
echo 清空垃圾箱,備份文件和預緩存腳本...
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
echo 清空cooke和最近歷史...
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
echo 清空IE臨時文件目錄...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"@cho 清理系統盤無用文件...
%windir%\system32\sfc.exe /purgecache
echo 系統LJ完成!
echo. & pause
保存.....BAT

Ⅹ 怎樣編輯一個批處理刪除IE緩存、歷史記錄和windows操作痕跡

在桌面上點滑鼠右鍵,選擇新建一個「記事本」或「文本文檔」,把下面的字復制進去,點「另存為」,把文件名定為「清除系統LJ.bat」就完成,記住後綴名一定要是.bat,好ok了!你的垃圾清除器就這樣製作成功了!雙擊它就能很快地清理垃圾文件,大約一分鍾不到。

@echo off
echo 正在清除系統垃圾文件,請稍等......
del /f /s /q %windir%prefetch*.*
rd /s /q %windir% emp & md %windir% emp
del /f /q %userprofile%cookies*.*
del /f /q %userprofile% ecent*.*
del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"
del /f /s /q "%userprofile% ecent*.*"
echo 清除系統垃圾完成!
echo. & pause