所谓的清理掉线数据个人认为是假的只是清理系统垃圾文件而已下面是写清理掉线数据的代码
下面代码中的汉字可以任意改换成~你喜欢的~
方法:点击开始菜单-所有程序-附件-记事本,弹出记事本后,向里面输入以下内容(红色部分)
@echo off
echo 正在清除系统垃圾 请稍等...
echo 清除临时文件......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._tmp
echo 清除无用的日志......
del /f /s /q %systemdrive%\*.log
echo 清除无用后台临时程序......
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
echo 清空回收站......
del /f /s /q %systemdrive%\recycled\*.*
echo 清除多余的备份文件......
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
echo 清除网络临时文件......
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
echo 清除最近打开文档......
del /f /q %userprofile%\recent\*.*
echo 清除网络临时文件......
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
然后点击保存或者另存为:清除系统垃圾.bat(名称可以随便改为xxx,不一定要叫:清除系统垃圾,保存类型为:所有文件,注意:扩展名一定要改为.bat 不然不能正常运行此清理程序)。
然后运行就ok了~~
这个代码经过许多人测试~~Windows XP下通过~我经常用呢~~其他操作系统慎用~~
关键词:记事本 扩展名