Windows 8是美國微軟開發(fā)的新一代操作系統(tǒng),Windows 8共有4個發(fā)行版本,分別面向不同用戶和設備。于2012年10月26日發(fā)布。微軟在Windows 8操作系統(tǒng)上對界面做了相當大的調整。取消了經(jīng)典主題以及Windows 7和Vista的Aero效果,加入了ModernUI,和Windows傳統(tǒng)界面并存。同時Windows徽標大幅簡化,以反映新的Modern UI風格。前身旗形標志轉化成梯形。
許多Win8用戶都知道當系統(tǒng)運行速度受到影響的時候用第三方軟件來清理系統(tǒng)緩存,那么除了使用第三方軟件還有別的方法嗎?下面小編就介紹下批處理刪除緩存文件的方法。

方法:
1、在Windows8桌面上按鼠標右鍵新建“文本文檔”。
2、復制以下代碼粘貼到記事本內(nèi)。
@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:\windows\temp %%a in (*.*) do del /f /s /q “%%a”
for /r c:\windows\Prefetch %%a in (*.*) do del /f /s /q “%%a”
for /r %userprofile%\AppData\Local\Temp %%a in (*.*) do del /f /s /q “%%a”
for /r “%localappdata%\Microsoft\Windows\Temporary Internet Files” %%a in (*.*) do del /f /s /q “%%a”
for /r %localappdata%\Microsoft\Windows\History %%a in (*.*) do del /f /s /q “%%a”
for /r %appdata%\Microsoft\Windows\Cookies %%a in (*.*) do del /f /s /q “%%a”
for /r %windir%\SoftwareDistribution\Download %%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%\System32\LogFiles %%a in (*) do del /f /s /q “%%a”
del /f /s /q %systemdrive%\hiberfil.sys
pause & exit
這樣按任意鍵就退出了
3、將“記事本”后綴名改為“.bat”。
4、最后雙擊“.bat”運行文件即可。
以上就是Win8批處理刪除緩存文件的方法,用戶可以在第三方軟件和此方法中選擇自己喜歡的方法進行操作。
Windows 8是對云計算、智能移動設備、自然人機交互等新技術新概念的全面融合,也是“三屏一云”戰(zhàn)略的一個重要環(huán)節(jié)。Windows 8提供了一個跨越電腦、筆記本電腦、平板電腦和智能手機的統(tǒng)一平臺。
|