本帖最后由 a87750530 于 2011-6-26 21:04 编辑
从恶意网站实验室下载的hosts,里面的内容如下- 115.47.219.95 www.aiqianming.cn
- 115.47.219.95 www.77112.com
- 115.47.219.95 www.6d6d.net
- .....
复制代码 想批量写入hosts文件找到这样的方法:- :hostspb
- mode con COLS=80 lines=40
- color 0a
- echo 115.47.219.95 www.aiqianming.cn >>C:\Windows\System32\Drivers\etc\hosts
- echo 115.47.219.95 www.77112.com >>C:\Windows\System32\Drivers\etc\hosts
- echo 115.47.219.95 www.6d6d.net >>C:\Windows\System32\Drivers\etc\hosts
- type C:\WINDOWS\system32\drivers\etc\hosts
- start notepad C:\WINDOWS\system32\drivers\etc\hosts
- echo hosts屏蔽完成...任意键返回
- pause >nul
- end
复制代码 上面的方法很是麻烦,每个网站都要在前面加echo ,后面要加>>C:\Windows\System32\Drivers\etc\hosts
能不能把网址如上面的列出来后,用批处理自动添加前后代码然后写入hosts
请大家帮忙一下!谢谢! |