Get computer name and IP

Get computer name and IP

Let other users know how useful this tip is by rating it below. Got a tip or code of your own you'd like to share? Submit it here!


One of the many namespaces in the Base Class Framework is the System.Net namespace.

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

It provides a simple programming interface to many of the protocols found on the network today. One of the classes of the namespace is DNS, which provides simple domain name resolution functionality.

The following example demonstrates the use of System.NET.DNS namespace to get the computer Name and its IP address:


Option Strict Off
Imports system
Imports System.Net.DNS
  Public Class GetIP

    Shared Function GetIPAddress() As String
      Dim oAddr As  System.Net.IPAddress
      Dim sAddr As String
      With system.Net.DNS.GetHostByName(system.Net.DNS.GetHostName())
         oAddr = New System.Net.IPAddress(.AddressList(0).Address)
         sAddr = oAddr.ToString
      End With
      GetIPAddress = sAddr
    End Function

    Shared Sub main()
      Dim shostname As String
      shostname = system.Net.DNS.GetHostName
      console.writeline("Your Machine Name = " & shostname)
      'Call Get IPAddress
      console.writeline("Your IP = " & GetIPAddress)
    End Sub

 End Class

Compile the file as: vbc getip.vb /r:system.net.dll. Execute the getip.exe and the computer's name and IP will be printed on the console.


Source: DotNetExtreme.com

This was first published in February 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.