2014-08-01 21:32作者:系统城
是不是觉得自己的Win7系统空间越变越小了?是不是觉得电脑越来越卡了?是不是觉得系统运行速度越来越慢?如果这些问题都发生在你系统上,别担心,让小编来告诉你一个实用技巧,快速为系统瘦身,提升系统运行速度。
Win7系统快速瘦身的实用技巧:
1.在桌面上找到开始按钮,点击所有程序--附件—记事本,创建个新的记事本如下图所示
2.复制下面的红字部分,粘贴进新建的文本文档里
@echo off
echo 清除系统垃圾过程中,请稍等。。。。。。
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 清除系统垃圾完成!按任意键继续……
echo. & pause
如图所示