我正在寻找一个脚本,可以在主机文件中的特定行或之后的Windows 7主机文件中添加主机条目。
我在您的论坛here中遇到了这个帖子,它可以完美地添加/删除这些行,但它会在文件末尾添加不在顶部的行。你可以帮忙吗?
答案 0 :(得分:0)
1)创建了带有一些DNS条目的txt文件 dns.txt
1.2.3.4 abcd.com
2.3.4.5 bcde.com
3.4.5.6 cdef.com
4.5.6.7 defg.com
2)创建了一个包含一行代码的批处理文件:
for /F %%i in (c:\temp\dns.txt) do echo %%i >> "D:\hosts"
3)但是当我检查主机文件时,它只有IP条目而不是主机名。
==================
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
1.2.3.4
2.3.4.5
3.4.5.6
4.5.6.7
====================
有什么不对!! !!