复制代码 代码如下:
@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系统的使用痕迹能?
xp系统下,能否用 批处理 实现清理使用痕迹的功能?
IE使用痕迹 系统使用痕迹 软件使用痕迹等等。
网上搜索了几个,感觉都不太好用。
不想用软件清理,只想运行一下bat文件,就自动清理完了。
有没有bat批处理,实现 清理天使.rar 这个软件里面的清理痕迹功能?
ygqiang 中尉 Rank: 5Rank: 5 帖子356 积分803 技术1 捐助0 注册时间2010-4-18 2楼
发表于 2011-4-8 14:03 | 只看该作者
其实我主要是想清理下上网痕迹
网上下载的bat文件,不行
这个软件,清理的比较彻底 !
复制代码 代码如下:
@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 2clsErr%file%.log
del /f /s /q "%userprofile%\locals~1\tempor~1\*.*" cls%file%.log 2clsErr%file%.log
del /f /s /q "%systemdirve%\recycled\*.*" cls%file%.log 2clsErr%file%.log
del /f /s /q "%userprofile%\recent\*.*" cls%file%.log 2clsErr%file%.log
del /f /s /q "%userprofile%\cookies\*.*" cls%file%.log 2clsErr%file%.log
del /f /s /q "%userprofile%\locals~1\history\*.*" cls%file%.log 2clsErr%file%.log
echo ------------------------------------开始清理:注册表信息cls%file%.log
echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\TypedURLS" cls%file%.log 2clsErr%file%.log
echo y | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\internet settings\5.0\cache\extensible cache" cls%file%.log 2clsErr%file%.log
echo 清理完毕,按任意键退出
:end
pause
找了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
用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浏览器的“历史记录”
但如何清除ie地址栏的历史网站记录呢?
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]