Results 1 to 3 of 3

Thread: [RESOLVED] Get LAN Name (not Device Name)

Threaded View

  1. #1

    Thread Starter
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Resolved [RESOLVED] Get LAN Name (not Device Name)

    I can get the LAN Device Names (using code below) but how do you get those strings from the "Name" column (see image) that the user can change?

    Code:
    ' get list of enabled lan card device names
    Dim cat As New PerformanceCounterCategory("Network Interface")
    Dim instances As String() = cat.GetInstanceNames()
    For Each instance As String In instances
        Debug.WriteLine(instance)
    Next
    Attached Images Attached Images  

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width