How do I get the local machine name?
|
|
|||||||||||||
|
|
You should be able to use System.Environment.MachineName for this. It is a property that returns a string containing the netBIOS name of the computer: http://msdn.microsoft.com/en-us/library/system.environment.machinename.aspx |
|||||||
|
|
From link text Four ways to get your local network/machine name:
More information at: Difference between SystemInformation.ComputerName, Environment.MachineName, and Net.Dns.GetHostName |
||||
|
|
If you want the FQDN (fully qualified domain name) of the local computer, you can use
The other methods will only return the local name, without any domain specific info. For instance, for the computer |
||||
|
|