删除临时文件,清理IE和使用历史痕迹
从网上找来的一个脚本,无法考证出处,自己记录下,可以在需要的时候使用。
把一下代码保存为delTemp.bat文件,且文件编码格式为ANSI格式
@echo off echo 删除系统目录下备份文件 & echo 开始删除:%windir%\*.bak del /f /s /q %windir%\*.bak &echo; echo 删除应用程序临时文件 & echo 开始删除:%windir%\prefetch\*.* del /f /s /q %windir%\prefetch\*.* &echo; echo 删除系统维护等操作产生的临时文件 & echo 开始删除:%windir%\temp rd /s /q %windir%\temp & md %windir%\temp &echo; echo 删除当前用户的COOKIE (IE) 【Win10环境下可能没有权限】& echo 开始删除:%userprofile%\cookies\*.* del /f /q %userprofile%\cookies\*.* &echo; echo 删除internet临时文件【Win10环境下可能没有权限】 & echo 开始删除:"%userprofile%\local settings\temporary internet files\*.*" del /f /s /q "%userprofile%\local settings\temporary internet files\*.*" &echo; echo 删除当前用户日常操作临时文件 & echo 开始删除:"%userprofile%\local settings\temp\*.*" del /f /s /q "%userprofile%\local settings\temp\*.*" &echo; echo 删除访问记录(开始菜单中的文档里面的东西) & echo 开始删除:"%userprofile%\recent\*.*" del /f /s /q "%userprofile%\recent\*.*" &echo; pause
我在自己的电脑里测试,我使用的是Win10专业版,在操作local settings和cookies文件夹的时候,提示没有权限。
如果你也有同样的问题,可以参考:%userprofile%\Local Settings文件夹拒绝访问怎么办
=======================================================================================
清除IE临时文件的Batch脚本
@echo off title: IE temporary file deleter echo 正在 清除Internet临时文件 ............ RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 echo 清除Cookies RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2 echo 清除历史记录 RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1 echo 清除表单数据 RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16 echo 清除密码 RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32 echo 清除上述全部项目 RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255 echo 清除上述全部项目,以及IE7中使用的加载项所保存的各种数据 RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351 msg * your useless files have been crashed,master........ pause
出处:http://www.bathome.net/thread-5171-1-1.html
=======================================================================================
批处理怎样清理XP系统的使用痕迹能?
xp系统下,能否用 批处理 实现清理使用痕迹的功能?
IE使用痕迹 系统使用痕迹 软件使用痕迹等等。
网上搜索了几个,感觉都不太好用。
不想用软件清理,只想运行一下bat文件,就自动清理完了。
有没有bat批处理,实现 清理天使.rar 这个软件里面的清理痕迹功能?
ygqiang 中尉 Rank: 5Rank: 5 帖子356 积分803 技术1 捐助0 注册时间2010-4-18 2楼
发表于 2011-4-8 14:03 | 只看该作者
其实我主要是想清理下上网痕迹
网上下载的bat文件,不行
这个软件,清理的比较彻底 !
kyo2605757 列兵 Rank: 1 帖子10 积分16 技术2 捐助0 注册时间2010-9-7 3楼
发表于 2011-4-9 09:49 | 只看该作者
@echo off mode con cols=50 lines=15 echo 10秒后即将进行清理,请先关闭浏览器 ping -n 10 127.1>nul 2>nul cls echo 清理中,请稍后。。。 del /f /s /q %temp%\*.* >nul 2>nul del /f /s /q "%userprofile%\locals~1\tempor~1\*.*" >nul 2>nul del /f /s /q "%systemdirve%\recycled\*.*" >nul 2>nul del /f /s /q "%userprofile%\recent\*.*" >nul 2>nul del /f /s /q "%userprofile%\cookies\*.*" >nul 2>nul del /f /s /q "%userprofile%\locals~1\history\*.*" >nul 2>nul echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\TypedURLS" >nul 2>nul echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\internet settings\5.0\cache\extensible cache" >nul 2>nul cls echo 清理完毕,按任意键退出 pause>nul
下面的的代码是经过优化,可以记录清理日志信息等
@echo off color 0a mode con cols=100 lines=350 echo %date% %time% set time1=%time::=% set file=%time1:~,8% echo 即将进行清理,请先关闭浏览器 set /p=<nul 1>cls%file%.log 2>clsErr%file%.log set /p a=你确定继续清理吗?(Y/N) if /i not "%a%"=="y" goto :end echo 清理中,请稍后。。。 echo ------------------------------------开始清理:%temp%\*.*>>cls%file%.log del /f /s /q %temp%\*.* >>cls%file%.log 2>>clsErr%file%.log del /f /s /q "%userprofile%\locals~1\tempor~1\*.*" >>cls%file%.log 2>>clsErr%file%.log del /f /s /q "%systemdirve%\recycled\*.*" >>cls%file%.log 2>>clsErr%file%.log del /f /s /q "%userprofile%\recent\*.*" >>cls%file%.log 2>>clsErr%file%.log del /f /s /q "%userprofile%\cookies\*.*" >>cls%file%.log 2>>clsErr%file%.log del /f /s /q "%userprofile%\locals~1\history\*.*" >>cls%file%.log 2>>clsErr%file%.log echo ------------------------------------开始清理:注册表信息>>cls%file%.log echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\TypedURLS" >>cls%file%.log 2>>clsErr%file%.log echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\internet settings\5.0\cache\extensible cache" >>cls%file%.log 2>>clsErr%file%.log echo 清理完毕,按任意键退出 :end pause
-------------------------------------------------------------------------------------
ygqiang 中尉 Rank: 5Rank: 5 帖子356 积分803 技术1 捐助0 注册时间2010-4-18 4楼
发表于 2011-4-11 08:14 | 只看该作者
本帖最后由 ygqiang 于 2011-4-11 08:16 编辑
多谢楼上。
找了2个文件,
但能否将这2个文件,做到1个bat批处理文件 或者 reg文件 里面呢?
1、彻底屏蔽历史记录.ini
文件内容是:
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main "Save_Session_History_On_Exit"="yes" HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs [8]
2、彻底屏蔽历史记录.bat
文件内容是:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "History" /t REG_EXPAND_SZ /d "%%USERPROFILE%%\Local Settings\History//\"
regini 彻底屏蔽历史记录.ini
-------------------------------------------------------------------------------------
ygqiang 中尉 Rank: 5Rank: 5 帖子356 积分803 技术1 捐助0 注册时间2010-4-18 5楼
发表于 2011-4-12 11:20 | 只看该作者
用1个bat批处理解决。
;删除上网记录 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "History" /t REG_EXPAND_SZ /d "%%USERPROFILE%%\Local Settings\History//\" reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /f /v "Save_Session_History_On_Exit" /t REG_SZ /d "yes" echo HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURL [8]>tmp.ini regini tmp.ini If "%ERRORLEVEL%"=="0" del tmp.ini
-------------------------------------------------------------------------------------
ygqiang 中尉 Rank: 5Rank: 5 帖子356 积分803 技术1 捐助0 注册时间2010-4-18 6楼
发表于 2011-4-22 10:07 | 只看该作者
以上这个,可以屏蔽ie浏览器的“历史记录”
但如何清除ie地址栏的历史网站记录呢?
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/3544616.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2014-02-11 16:20 jack_Meng 阅读(4403) 评论(0) 编辑 收藏 举报