Windows 10 批处理文件 dns

Windows 10 批处理文件 dns

我有两个批处理文件,一个用于将 DNS 更改为 Unblock-US,另一个用于将其重置为 DHCP。这两个文件在 Windows 7 和 8/8.1 中运行良好,但升级到 Windows 10 后,我无法再将其重置为 DHCP。

解锁美国批次:

netsh interface ipv4 set dns "Ethernet 2" static 208.122.23.22
netsh interface ipv4 add dns "Ethernet 2" 208.122.23.23 index=2
ipconfig /flushdns

DHCP 批处理:

netsh interface ipv4 set dns "Ethernet 2" static dhcp
netsh interface ipv4 add dns "Ethernet 2" dhcp index=1
ipconfig /flushdns

谁知道可能出了什么问题?

答案1

改变这个:

netsh interface ipv4 set dns "Ethernet 2" static dhcp

netsh interface ipv4 set dns "Ethernet 2" dhcp

记住要以管理员权限执行此操作,第二行是多余的。

相关内容