在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
复制代码 代码如下: @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 批处理怎样清理XP系统的使用痕迹能?
复制代码 代码如下: @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 清理中,请稍后。。。 :end 找了2个文件, 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 用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 以上这个,可以屏蔽ie浏览器的“历史记录” |
请发表评论