cmd命令行与vbs修改IP地址及DNS等的代码

发布时间:2019-10-29编辑:脚本学堂
如何实现命令行下对IP地址及DNS的修改操作呢?请看本文介绍的方法与代码,包括netsh和wmic两个版本,以及使用vbs下修改网关和DNS的代码,供大家学习参考。

1、CMD命令行修改
修改IP地址
 

复制代码 代码示例:
cmd /c netsh interface ip set address name=" 本地连接" source=static addr=211.82.56.253 mask=255.255.255.0 gateway=211.82.56.1 gwmetric=1

修改DNS:
 

复制代码 代码示例:
cmd /c netsh interface ip set dns name="本地连接" source=static addr=202.99.192.66

配置或更新IP地址:
 

复制代码 代码示例:
wmic nicconfig where index=0 call enablestatic("192.168.1.5"), ("255.255.255.0") ;index=0说明是配置网络接口1。

配置网关(默认路由):
 

复制代码 代码示例:
wmic nicconfig where index=0 call setgateways("192.168.1.1"),(1)

2、VBS代码实现修改
 

复制代码 代码示例:
Const T_GATEWAY = "192.168.10.1" '网关
Const T_NEWDNS1 = "203.99.192.66" 'DNS1
Const T_NEWDNS2 = "63.221.248.43" 'DNS2
strWinMgmt="winmgmts:{impersonationLevel=impersonate}"
Set NICS = GetObject( strWinMgmt ).InstancesOf("Win32_NetworkAdapterConfiguration")
For Each NIC In NICS
If NIC.IPEnabled Then
NIC.SetDNSServerSearchOrder Array(T_NEWDNS1,T_NEWDNS2)
NIC.SetGateways Array(T_GATEWAY)
End If
Next