zoukankan      html  css  js  c++  java
  • VBS获取本机IP地址

    '获取本机IP
    '
    owner DeViL
    'return 本机的IP地址
    Public Function GetIP
       ComputerName
    ="."
        
    Dim objWMIService,colItems,objItem,objAddress
        
    Set objWMIService = GetObject("winmgmts:\\" & ComputerName & "\root\cimv2")
        
    Set colItems = objWMIService.ExecQuery("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled = True")
        
    For Each objItem in colItems
            
    For Each objAddress in objItem.IPAddress
                
    If objAddress <> "" then
                    GetIP 
    = objAddress
                    
    Exit Function
                
    End If
            
    Next
        
    Next
    End Function
  • 相关阅读:
    POJ2524+并查集
    POJ3697+BFS+hash存边
    POJ1151+线段树+扫描线
    POJ2528+线段树
    ubuntu 和 win7 远程登陆 + vnc登陆
    POJ3690+位运算
    POJ3283+字典树
    POJ3282+模拟
    POJ2349+prim
    2016.6.13
  • 原文地址:https://www.cnblogs.com/coderzh/p/981119.html
Copyright © 2011-2022 走看看