怎么删除百底收搜里面的历史记录?

来源:百度知道 编辑:UC知道 时间:2024/06/08 12:55:32
怎么删除百底收搜里面的历史记录?我删不掉呀,帮帮我

点击输入栏会出现以前输入过的字,把鼠标移到上面,按Delete键删除。

你可以把下面的代码复制记事本中,并把它的扩展名改变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 您的操作完毕
echo. & pause

第一种:自定义删除法(即想删除哪条历史记录就删除哪条)