• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    CMD和vbs修改 IP地址及DNS的实现代码
    修改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)


    vbs

    Const T_GATEWAY = "211.82.56.1" '网关
    Const T_NEWDNS1 = "202.99.192.66" 'DNS1
    Const T_NEWDNS2 = "60.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
    上一篇:可自删除 开启3389创建用户粘滞键后门的vbs
    下一篇:vbScript on error resume next容错使用心得
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    CMD和vbs修改 IP地址及DNS的实现代码 CMD,和,vbs,修改,地址,及,