首页 > 代码库 > powershell 脚本设置DNS
powershell 脚本设置DNS
#!powershell $adapter = Get-NetAdapter |?{$_.InterfaceDescription -ne "Microsoft KM-TEST Loopback Adapter"} if ($adapter -ne $null) { $adapter | Rename-NetAdapter -NewName "Eth" disable-NetAdapterBinding -Name "Eth" -ComponentID ms_tcpip6 netsh interface ipv4 set dns name="Eth" source=static address=114.114.114.114 primary netsh interface ipv4 add dnsserver name="Eth" address=8.8.8.8 index=2 netsh interface ipv4 add dnsserver name="Eth" address=202.96.209.133 index=3 }
以上就是powershell设置dns地址的脚本,适用于powershell 4及以上版本
windwos 2008 更改DNS方法:
$wmi=get-wmiobject -class win32_networkadapterconfiguration -filter ipenabled=true -computername 计算机名 $wmi.SetDNSServerSearchOrder(‘8.8.8.8‘)
本文出自 “zengestudy” 博客,请务必保留此出处http://zengestudy.blog.51cto.com/1702365/1928929
powershell 脚本设置DNS
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。