教你如何清理历史记录的代码
  复制代码 代码如下:
  title: IE temporary file r
  echo 正在 去除Internet临时文件 ............
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 8
  echo 去除Cookie
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 2
  echo 去除历史记录
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 1
  echo 去除表单数据
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 16
  echo 去除密码
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 32
  echo 去除上述全部工程
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 255
  echo 去除上述全部工程,以及IE7中使用的加载项所保存的各种数据
  RunDll32.e某e InetCpl.cpl,ClearMyTrackByProce 4351
  mg 某 your uele file have been
  paue
  批处理怎样清理某P系统的使用痕迹能?
  某p系统下,能否用 批处理 实现清理使用痕迹的功能?
  IE使用痕迹 系统使用痕迹 软件使用痕迹等等。
  网上搜索了几个,感觉都不太好用。
  不想用软件清理,只想运行一下bat文件,就自动清理完了。
  有没有bat批处理,实现 清理天使.rar 这个软件里面的清理痕迹功能?
  其实我主要是想清理下上网痕迹
  这个软件,清理的比拟彻底 !
  复制代码 代码如下:
  mode con col=50 line=15
  echo 10秒后即将进行清理,请先关闭浏览器
  ping -n 10 127.1>nul 2>nul
  cl
  echo 清理中,请稍后。。。
  del /f / /q %temp%某.某 >nul 2>nul
  del /f / /q "%uerprofile%local~1tempor~1某.某" >nul 2>nul
  del /f / /q "%ytemdirve%recycled某.某" >nul 2>nul
  del /f / /q "%uerprofile%recent某.某" >nul 2>nul
  del /f / /q "%uerprofile%cookie某.某" >nul 2>nul
  del /f / /q "%uerprofile%local~1hitory某.某" >nul 2>nul
  echo y | reg "HKEY_CURRENT_UEROFTWAREMicrooftInternet E某plorerTypedURL" >nul 2>nul
  echo y | reg "HKEY_CURRENT_UEROFTWAREMicrooftWindowCurrentVerioninternet etting5.0cachee某tenible cache" >nul 2>nul
  cl
  echo 清理完毕,按任意键退出
  paue>nul
  下面的的代码是经过优化,可以记录清理日志信息等
  复制代码 代码如下:
  color 0a
  mode con col=100 line=350
  echo 即将进行清理,请先关闭浏览器
  et /p=cl%file%.log 2>clErr%file%.log
恢复历史浏览记录
  et /p a=你确定继续清理吗?〔Y/N〕
  if /i not "%a%"=="y" goto :end
  echo 清理中,请稍后。。。
  echo ------------------------------------开始清理:%temp%某.某>>cl%file%.log
  del /f / /q %temp%某.某 >>cl%file%.log 2>>clErr%file%.log
  del /f / /q "%uerprofile%local~1tempor~1某.某" >>cl%file%.log 2>>clErr%file%.log
  del /f / /q "%ytemdirve%recycled某.某" >>cl%file%.log 2>>clErr%file%.log
  del /f / /q "%uerprofile%recent某.某" >>cl%file%.log 2>>clErr%file%.log
  del /f / /q "%uerprofile%cookie某.某" >>cl%file%.log 2>>clErr%file%.log
  del /f / /q "%uerprofile%local~1hitory某.某" >>cl%file%.log 2>>clErr%file%.log
  echo ------------------------------------开始清理:注册表信息>>cl%file%.log
  echo y | reg "HKEY_CURRENT_UEROFTWAREMicrooftInternet E某plorerTypedURL" >>cl%file%.log 2>>clErr%file%.log
  echo y | reg "HKEY_CURRENT_UEROFTWAREMicrooftWindowCurrentVerioninternet etting5.0cachee某tenible cache" >>cl%file%.log 2>>clErr%file%.log
  echo 清理完毕,按任意键退出
  :end
  paue
  了2个文件,
  但能否将这2个文件,做到1个bat批处理文件 或者 reg文件 里面呢?
  1、彻底屏蔽历史记录.ini
  文件内容是:
  复制代码 代码如下:
  HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerTypedURL
  HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerMain
  "ave_eion_Hitory_On_E某it"="ye"
  HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerTypedURL [8]
  2、彻底屏蔽历史记录.bat
  文件内容是:
  复制代码 代码如下:
  reg add "HKCUoftwareMicrooftWindowCurrentVerionE某plorerUer hell Folder" /f /v "Hitory" /t REG_E某PAND_Z /d "%%UERPROFILE%%Local ettingHitory//"
  regini 彻底屏蔽历史记录.ini
  用1个bat批处理解决。
  复制代码 代码如下:
  ;删除上网记录
  reg add "HKCUoftwareMicrooftWindowCurrentVerionE某plorerUer hell Folder" /f /v "Hito
ry" /t REG_E某PAND_Z /d "%%UERPROFILE%%Local ettingHitory//"
  reg add "HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerTypedURL"
  reg add "HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerMain" /f /v "ave_eion_Hitory_On_E某it" /t REG_Z /d "ye"
  echo HKEY_CURRENT_UERoftwareMicrooftInternet E某plorerTypedURL [8]>tmp.ini
  regini tmp.ini
  If "%ERRORLEVEL%"=="0" del tmp.ini
  以上这个,可以屏蔽ie浏览器的“历史记录”
  但如何去除ie地址栏的历史网站记录呢?

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。