Windows 批处理设置dns ,解决能上qq不能开网页
对于windows 7
1 @echo off 2 netsh interface ip set dns "本地连接" static 114.114.114.114 primary 3 netsh interface ip add dns "本地连接" 8.8.8.8 4 ipconfig /flushdns
对于windows 10
1 @echo off 2 netsh interface ip set dns "以太网" static 223.5.5.5 primary 3 netsh interface ip add dns "以太网" 8.8.8.8 4 ipconfig /flushdns
新建文本文件,将以上对应的代码复制粘贴进入。 保存后修改扩展名(即格式) txt 为 bat