怎样编辑一个批处理删除IE缓存、历史记录和windows操作痕迹?
发布网友
发布时间:2022-04-30 15:36
我来回答
共2个回答
热心网友
时间:2022-06-26 11:47
在桌面上点鼠标右键,选择新建一个“记事本”或“文本文档”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统LJ.bat”就完成,记住后缀名一定要是.bat,好ok了!你的垃圾清除器就这样制作成功了!双击它就能很快地清理垃圾文件,大约一分钟不到。
@echo off
echo 正在清除系统垃圾文件,请稍等......
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
1.用360安全卫士,会自动扫描并询问你是否清理你机子上的那些东西,很方便
2.手动删除,鼠标放在IE标识上,点击右键,点击属性,或者双击打开IE后,点击工具才选项,点击“internet选”直接就有一个对上述信息的删除选项,点击“删除”即可
热心网友
时间:2022-06-26 11:48
在桌面上点鼠标右键,选择新建一个“记事本”或“文本文档”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统LJ.bat”就完成,记住后缀名一定要是.bat,好ok了!你的垃圾清除器就这样制作成功了!双击它就能很快地清理垃圾文件,大约一分钟不到。
@echo off
echo 正在清除系统垃圾文件,请稍等......
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