亚洲高清vr播放在线观看,欧美亚洲精品免费,欧美日韩天堂在线视频,午夜福利小视频

      學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 操作系統(tǒng) > 系統(tǒng)優(yōu)化教程 > Win8如何徹底清理C盤垃圾

      Win8如何徹底清理C盤垃圾

      時(shí)間: 春健736 分享

      Win8如何徹底清理C盤垃圾

        win8運(yùn)行久了之后,C盤空間顯示不足,那么Win8如何徹底清理C盤垃圾呢?就讓學(xué)習(xí)啦小編來(lái)告訴大家Win8徹底清理C盤垃圾的方法吧,希望可以幫助到大家。

        Win8徹底清理C盤垃圾方法

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


      1160139