POPTEST老李分享修改dns ip的vbs代码
POPTEST老李分享修改dns ip的vbs代码
poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标。如果对课程感兴趣,请大家咨询qq:908821478,咨询电话010-84505200。
准备把学员在工作中写的一个自动化功能加入到培训中案例,由于测试服务器功能,每次要修改ip地址,所以要自动化去修改dns ip,代码如下:
' This script changes the DNS servers for a network device in Windows
' to a defined IP or deletes them and makes it the default automatic
' Test if in admin mode by detecting 'elevated' in the command line that launched this script
' WScript is basically a THIS script object
If
WScript.Arguments.Named.Exists(
"elevated"
) =
False
Then
'Launch this script again as administrator
CreateObject _
(
"Shell.Application"
).ShellExecute _
"wscript.exe"
,
""
""
& WScript.ScriptFullName &
""
" /elevated"
,
""
,
"runas"
, 1
WScript.Quit
Else
'Change the working directory from the system32 folder back to the script's folder.
Set
oShell = CreateObject(
"WScript.Shell"
)
oShell.CurrentDirectory = CreateObject _
(
"Scripting.FileSystemObject"
).GetParentFolderName(WScript.ScriptFullName)
'MsgBox "Now running with elevated permissions"
End
If
' Define the DNS Primary and secondary server IPs
DNSserv =
"111.111.111.111,222.222.222.222"
' Ask if the DNS servers should be set or removed
iAction = MsgBox(
"Would you like to use DNS?"
, _
vbYesNoCancel+vbQuestion+vbApplicationModal,
"DNS Toggle: "
& DNSserv)
' Cancel was selected - quit this script
If
vbCancel = iAction
Then
WScript.Quit
End
If
strComputer =
"."
' This computer
' Get the Script shell and WMI Service objects
Set
objWMIService = GetObject(
"winmgmts:\\"
& strComputer &
"\root\cimv2"
)
Set
WshShell = WScript.CreateObject(
"WScript.Shell"
)
' The registry key that hold the TCP/IP parameters
Regkey = "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\Tcpip\Parameters\Interfaces\"
' Enumerate all of the enabled network devices
Set
IPDevSet = objWMIService.ExecQuery _
(
"Select SettingID from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE"
)
DNSservRead =
""
For
Each
IPDev in IPDevSet
' Get the current setting
DNSservRead = WshShell.RegRead _
( Regkey & IPDev.SettingID &
"\NameServer"
)
'MsgBox "DNS Servers was set to:" & vbCrLf & DNSservRead, vbOK, "Old Status"
' if it's blank and the user chose YES set it to the DNS Server values.
' So we don't overwrite the values that are already set
If
""
= DNSservRead and vbYes = iAction
Then
'Combine regkey, settingID, and nameserver to create the correct registry key path
WshShell.RegWrite Regkey & IPDev.SettingID &
"\NameServer"
, DNSserv,
"REG_SZ"
' If the user selected NO to delete the DNS values this script sets
' and it's not set to those DNS values do not mess with it.
ElseIf
DNSservRead = DNSServ and vbNo = iAction
Then
WshShell.RegWrite Regkey & IPDev.SettingID &
"\NameServer"
,
""
,
"REG_SZ"
End
If
' See the new setting
'DNSservRead = WshShell.RegRead( Regkey & IPDev.SettingID & "\NameServer")
'MsgBox "DNS Servers now set to:" & vbCrLf & DNSservRead, vbOK, "New Status"
Next
'Final message
szTitle =
""
szMssg =
""
If
vbYes = iAction
Then
szMssg =
"DNS Servers now set to use:"
& vbCrLf &
" "
& DNSserv
szTitle =
"DNS.com is ON"
Else
szMssg =
"DNS Servers deleted."
& vbCrLf &
"Now set to Automatic"
szTitle =
"DNS.com is OFF"
End
If
MsgBox szMssg, vbInformation, szTitle
POPTEST老李分享修改dns ip的vbs代码的更多相关文章
- POPTEST老李分享session,cookie的安全性以及区别 1
POPTEST老李分享session,cookie的安全性以及区别 poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程 ...
- POPTEST老李分享DOM解析XML之java
POPTEST老李分享DOM解析XML之java Java提供了两种XML解析器:树型解释器DOM(Document Object Model,文档对象模型),和流机制解析器SAX(Simple ...
- POPTEST老李分享session,cookie的安全性以及区别 3
如何查看服务器端输送到我们电脑中的这些Cookie信息: 点开IE浏览器或其他浏览器,在菜单栏中有工具选项,点开有InterNet选项: Cookie名称.来源.文件格式( ...
- POPTEST老李分享session,cookie的安全性以及区别 2
四,session和cookie谁更安全 就个人而言,我觉得session更安全一点,我以下几点看法. 1,如果session和cookie一样安全的话,二者就没有并要同时存在了,只要cookie就好 ...
- centos 修改DNS,网关,IP地址
1.CentOS 修改DNS 修改对应网卡的DNS的配置文件 # vi /etc/resolv.conf 修改以下内容 nameserver 8.8.8.8 #google域名服务器 nameser ...
- CentOS 设置网络(修改IP&修改网关&修改DNS)--update.14.08.15
自己电脑上装的虚拟机用桥接方式连接物理机,虚拟机重启后ip会发生变化,非常阻碍Xshell的连接和hosts指定的dns. 通过修改IP为static模式,保持IP不变. ============== ...
- ubuntu 修改静态IP和DNS
1.修改配置文件/etc/network/interfacesroot@ubuntu:~# sudo vi /etc/network/interfaces 添加以下内容:auto eth0 ...
- Linux下修改网卡IP、DNS和网关
Linux下修改网卡IP和网关 建议通过终端字符方式下来修改 一.修改IP地址 vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOO ...
- CentOS 网络设置修改 指定IP地址 DNS 网关(转)
CentOS 网络设置修改 指定IP地址 DNS 网关(实测 笔记) 环境: 系统硬件:vmware vsphere (CPU:2*4核,内存2G) 系统版本:Centos-6.5-x86_64 ...
随机推荐
- ajax跨域问题及解决
overview ajax是一种创建交互式网页应用的网页开发技术,是一种用于创建快速动态网页的技术,通过在后台与服务器进行少量数据交换.而ajax的跨域问题则是请求了其他项目的接口地址,当协议.子域名 ...
- collectionView布局
关于 collectionView的layout布局方法: 设置cell的间距,行间距,组与组之间的间距,都是在layout里面来设置. 包括,滚动方向. -(void)prepareLayout [ ...
- 利用jink调试程序,时间不准的解决办法
前几天,做工程,遇到了利用jlink的SWD的模式调试程序,定时器延时不准的问题,上网搜了好多,终于找到了问题所在,感谢万能的网友.时间不对是因为Keil的设置问题. 以下是转自网友: 一.先说说仿真 ...
- MyBatis从入门到放弃一:从SqlSession实现增删改查
前言 开博客这是第一次写系列文章,从内心上讲是有点担心自己写不好,写不全,毕竟是作为java/mybatis学习的过程想把学习的路线和遇到的问题都总结下来,也让知识点在脑海里能形成一个体系. 开发环境 ...
- JS判断手机当前的系统类型
<script language="javascript"> window.onload = function () { var n = navigator.userA ...
- Hibernate优缺点
下面就Hibernate优缺点分别进行简单的阐述.1.Hibernate优点:(1)对象/关系数据库映射(Basic O/R Mapping)它使用时只需要操纵对象,使开发更对象化,抛弃了数据库中心的 ...
- 3891: [Usaco2014 Dec]Piggy Back
3891: [Usaco2014 Dec]Piggy Back Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 116 Solved: 92[Subm ...
- 《Machine Learning》系列学习笔记之第三周
第三周 第一部分 Classification and Representation Classification 为了尝试分类,一种方法是使用线性回归,并将大于0.5的所有预测映射为1,所有小于0. ...
- Java基础——深入理解Java中的final关键字(转载)
Java中的final关键字非常重要,它可以应用于类.方法以及变量.这篇文章中我将带你看看什么是final关键字?将变量,方法和类声明为final代表了什么?使用final的好处是什么?最后也有一些使 ...
- MVC不用302跳转Action,内部跳转
原理,在一个Action里面return 另一个Action出去. public class HomeController : Controller { // GET: Home public Act ...