win8怎么刪除垃圾文件
win8怎么刪除垃圾文件
很多win8用戶對(duì)于如何清理系統(tǒng)垃圾還不是很清楚吧,那么win8怎么刪除垃圾文件呢?今天學(xué)習(xí)啦小編與大家分享下win8刪除垃圾文件的具體操作步驟,有需要的朋友不妨了解下。
win8刪除垃圾文件方法一
1.首先,咱們雙擊桌面的計(jì)算機(jī)圖標(biāo),展開系統(tǒng)的分區(qū)之后,大家可以看看,自己需要清理的是哪個(gè)磁盤的垃圾文件,確定之后咱們右鍵點(diǎn)擊該磁盤,然后選擇屬性-磁盤清理。
2.接下來咱們就需要等上幾分鐘了,因?yàn)橄到y(tǒng)會(huì)根據(jù)咱們的選擇掃描磁盤中的垃圾文件,然后所有可以清理的垃圾文件都會(huì)出現(xiàn)在下方的方框中。
3.想要?jiǎng)h除哪些文件,就直接在文件前方的方框中打鉤就可以了,然后點(diǎn)擊下方的清理系統(tǒng)文件即可。
win8刪除垃圾文件方法二
1、在Windows8桌面上按鼠標(biāo)右鍵新建“文本文檔”。
2、復(fù)制以下代碼粘貼到記事本內(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: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
3、將“記事本”后綴名改為“.bat”。
4、最后雙擊“.bat”運(yùn)行文件即可。