Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

getcomputername (kernel32)
 
.
Summary
Retrieves the NetBIOS name of the local computer.

C# Signature:

[DllImport("kernel32", CharSet=CharSet.Unicode)]
static extern bool GetComputerName(string lpBuffer, ref int lpnSize);

User-Defined Types:

None.

Notes:

The GetComputerName function retrieves the NetBIOS name of the local computer. This name is established at system startup, when the system reads it from the registry.

Tips & Tricks:

There is a .net class for this.

Sample Code:

Here is the PINVOKE way, but I think just using the BCL System.Environment.MachineName is alot easier. It also requires alot less code.

    class Class1
    {
        [DllImport("kernel32.dll")]
        public static extern bool GetComputerName
            (StringBuilder lpBuffer,
            ref int nSize);
        [STAThread]
        static void Main(string[] args)
        {
            StringBuilder b=new StringBuilder(100);
            int n=b.Capacity;
            bool rc=GetComputerName(b, ref n);
            Console.WriteLine(b);
        }
    }

Alternative Managed API:

System.Environment.MachineName will get you the netbios name.

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions