首页 > 编程 > VBScript > 正文

用VBS设置静态IP和DNS服务器地址的代码

2019-10-26 18:03:30
字体:
来源:转载
供稿:网友

核心代码一:

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 & "/root/cimv2") 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

您可能感兴趣的文章:

linux下bind9安装配置一例win2003 DNS服务器配置方法[图文详解]win2003服务器搭建DNS服务器配置图解教程(比较详细)windows2003 DNS服务器配置(图文详解)windows服务器 的DNS服务器备份与还原步骤小结Win2003 DNS服务器创建多个域名Python写的一个简单DNS服务器实例图文详解添加DNS服务器的操作步骤winmydns DNS服务器架设Centos 6.5 下配置DNS服务器的方法(图文详解)C#利用WMI操作DNS服务器(可远程操作,需要相应权限)win2003 使用DNS服务器实现负载均衡DNS服务器中创建正向查找区域并在该区域下创建主机记录DNS服务器 支持泛域名解析的设置方法 [修正版本]从断网事件分析DNS服务器拒绝服务攻击详解Liunx下配置DNS服务器DNS服务器管理与配置技巧浅谈RHE5服务器管理 搭建DNS服务器步骤说明[图文]在Windows 7 上安装DNS服务器bind9方法详解
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选