Win8如何快速清除系統(tǒng)垃圾
電腦使用一段時(shí)間以后在磁盤會(huì)積累一定的垃圾文件,導(dǎo)致運(yùn)行速度和開機(jī)速度明顯會(huì)變慢,那么Win8如何快速清除系統(tǒng)垃圾呢?下面學(xué)習(xí)啦小編就為大家?guī)砹薟in8快速清除系統(tǒng)垃圾的方法。
Win8快速清除系統(tǒng)垃圾方法一
你可以使用自帶的磁盤管理工具來清理,操作步驟如下:
(1)在C盤右擊,在常規(guī)選項(xiàng)卡上選擇磁盤清理,稍等一會(huì)
(2)選擇要清理的項(xiàng)目,并點(diǎn)擊確定
(3)等待清理完成
Win8快速清除系統(tǒng)垃圾方法二
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 & exit
這樣按任意鍵就退出了
3、將“記事本”后綴名改為“.bat”。
4、最后雙擊“.bat”運(yùn)行文件即可。
看過“Win8如何快速清除系統(tǒng)垃圾”的人還看了: