
- UID
- 812739
- 帖子
- 35
- 积分
- 194
- 锋行币
- 306 ¥
- 阅读权限
- 20
|
1,運行MSCONFIG 把不必要的程序全部禁用
2,清空IE緩存文件夾和系統緩存文件夾
3,桌面的文件盡可能的少放,最好不放。可在桌面新建個文件夾,把桌面上程序的快捷方式都剪切進去,然后直接拖到顯示屏上面邊界,設置為自動隱藏,前端顯示,再把新建的文件夾設置為隱藏屬性,就OK了
4,做個清理. BAT文件,新建文本文檔,把以下內容復制進去,文檔另存為清理.bat即可
內容如下:
@echo off
echo 系統垃圾清理程序
echo 正在清除系統垃圾,请稍等......
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\*.*"
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\*.*
echo 垃圾清理完成!
echo. & pause
5,殺毒軟件不要裝占內存高的,建議使用NOD32+360安全衛士,資源消耗小,但功能強大 |
|