Windows 批处理设置dns ,解决能上qq不能开网页

时间:2022-11-13 14:55:14

对于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