手机
当前位置:查字典教程网 >脚本专栏 >vbs >用VBS设置静态IP和DNS服务器地址的代码
用VBS设置静态IP和DNS服务器地址的代码
摘要:核心代码一:strIPAddress=Array("192.168.0.148")strSubnetMask=Array("255.255....

核心代码一:

strIPAddress = Array("192.168.0.148") strSubnetMask = Array("255.255.255.0") strGateway = Array("192.168.0.1") strGatewayMetric = Array(1) arrDNSServers = Array("192.168.0.1","192.168.0.2") strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!" & strComputer & "rootcimv2") Set colNetAdapters = objWMIService.ExecQuery _ ("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE") For Each objNetAdapter in colNetAdapters errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask) errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric) errDNS = objNetAdapter.SetDNSServerSearchOrder(arrDNSServers) If errEnable = 0 Then WScript.Echo "The IP address has been changed." Else WScript.Echo "The IP address could not be changed." End If Next

记得把参数改成自己想要的。

代码二:

将计算机的 IP 地址设置为 192.168.1.111,并将 IP 网关设置为 192.168.1.1。

strComputer = "." Set objWMIService = GetObject("winmgmts:" & strComputer & " ootcimv2") Set colNetAdapters = objWMIService.ExecQuery _ ("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE") strIPAddress = Array("192.168.1.111") strSubnetMask = Array("255.255.255.0") strGateway = Array("192.168.1.1") strGatewayMetric = Array(1) For Each objNetAdapter in colNetAdapters errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask) errGateways = objNetAdapter.SetGateways(strGateway, strGatewaymetric) If errEnable = 0 Then WScript.Echo "The IP address has been changed." Else WScript.Echo "The IP address could not be changed." End If Next

原文:http://demon.tw/programming/vbs-modify-ip-dns-setting.html

【用VBS设置静态IP和DNS服务器地址的代码】相关文章:

用vbs操作注册表实例代码

创建Guid 的代码

用vbs实现本地连接禁用/启用脚本代码

用vbs将名称转换为正确的大小写的代码

vbs复制文件夹的实现代码

VBS实现DOC转为文本文档的代码

使用ADSI、ASP和一对魔术戏法自动地创立一个虚拟目录的方法

使用VBS访问外部文本文件一些方法和脚本实例代码

用vbs实现禁用服务

VBS读网页的代码

精品推荐
分类导航