亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦>學(xué)習(xí)電腦>操作系統(tǒng)>系統(tǒng)優(yōu)化教程>

      電腦系統(tǒng)清理bat文件

      時間: 志藝942 分享

        目前除了手動人工清除垃圾文件,還有就是通過軟件進(jìn)行簡單清理。那么你知道電腦系統(tǒng)怎么清理bat文件么?接下來是小編為大家收集的電腦系統(tǒng)清理bat文件教程,歡迎大家閱讀:

        電腦系統(tǒng)清理bat文件

        以下為清楚系統(tǒng)垃圾的bat 將其保存為以bat為結(jié)尾的批處理文件就可以了,但是使用這個bat有一個問題

        @echo off

        echo 正在清除系統(tǒng)垃圾文件,請稍等......

        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\*.*"

        echo 清除系統(tǒng)垃圾完成!

        echo. & pause

        問題1:rd /s /q %windir%\temp & md %windir%\temp

        這句話可能導(dǎo)致的問題,如果是在服務(wù)器上的話,如果還存在acess的數(shù)據(jù)庫,那么就會產(chǎn)生奇怪的報錯

        ,比如:

        a: Microsoft JET Database Engine 錯誤 '80004005' 未指定的錯誤

        b:數(shù)據(jù)庫連接不上

        以上都是由于刪除temp的同時,還刪除了系統(tǒng)的權(quán)限,所以我建議這句做以下更改。

        del /f /s /q %windir%\temp\*.*

        就可以了

        
      看了“電腦系統(tǒng)清理bat文件”還想看:

      1.電腦一鍵清除垃圾bat教程

      2.bat怎么批處理命令來清理windows7系統(tǒng)垃圾文件

      3.Dos批處理編寫一鍵清理系統(tǒng)垃圾的bat代碼

      4.電腦優(yōu)化清除垃圾bat命令教程

      5.Win7如何新建一鍵清理系統(tǒng)垃圾文件BAT腳本

      2941142