孩子来 2008-11-26 17:30
文档里存放最近打开过的东西 如看过的片子 怎么清除啊
一直不知道怎么清除文档里的记录 大家有什么好办法么
bbs4adult 2008-11-26 17:36
我知道的只是优化软件有这些功能没几乎所有的都可以,不过修改注册表的就不清楚了!
优化大师 兔子 都行!
1tobef 2008-11-26 17:50
你是说在 Windows XP 里,Start --> My Recent Document 吗?
你可以在 Start --> Control Panel --> Taskbar and Start Manu ---> [Start Menu] --> Customize --> [Advance] ---> Clear list (最低处)
在最低格里打勾,将不再有最近打开文档的记录了。
有帮到你吗?
faye_voice 2008-11-26 17:57
*** 作者被禁止或删除 内容自动屏蔽 ***
pom09620 2008-11-26 17:59
*** 作者被禁止或删除 内容自动屏蔽 ***
学海无涯 2008-11-26 18:26
兔子,安全卫士都不错,还有一键系统清理文件!都能实现你的愿望!
xiaolin005 2008-11-26 19:23
给你个批处理文件,很实用。将扩展名变为BAT执行即可。
@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 清除系统LJ完成!
echo. & pause