对于windows 7
@echo off
netsh interface ip set dns "本地连接" static 114.114.114.114 primary
netsh interface ip add dns "本地连接" 8.8.8.8
ipconfig /flushdns
对于windows 10
@echo off
netsh interface ip set dns "以太网" static 223.5.5.5 primary
netsh interface ip add dns "以太网" 8.8.8.8
ipconfig /flushdns
新建文本文件,将以上对应的代码复制粘贴进入。 保存后修改扩展名(即格式) txt 为 bat