关于家用两台电脑联网的问题……

来源:百度知道 编辑:UC知道 时间:2024/06/05 21:24:04
我的住房是租的
房东自己连了网
允许我牵了根线连接他的电脑
让我苦恼的是:我浏览过的网页(私人)会在他的浏览记录中
请问谁可以告诉我
怎么设置自己的电脑
不让房东的电脑看到我的浏览内容呀
最好是我一下线就自动删除的方法(要安装什么软件的就别回答了)

无需安装软件,上网之后,执行一个批处理命令就就行

在桌面上点鼠标右键,选择新建一个“记事本”,把下面的字复制进去,把文件保存为“清除系统垃圾.txt”,然后将它的后缀改为.bat,双击它就能很快地清理垃圾文件,什么上网历史,上网临时文件,全部删除了。十五秒左右解决问题。
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
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 清除系统垃圾完