vote up 9 vote down star
1

How do I get the local machine name?

flag

63% accept rate

4 Answers

vote up 20 vote down check

System.Environment.MachineName

link|flag
Beat me by 14 seconds. – Joel Coehoorn Mar 19 at 13:57
Sorry :) These little questions are kind of a turkey shoot. I kind of assumed there'd be 4 answers by the time I posted. – annakata Mar 19 at 13:59
Well now I feel guilty about ridiculous amount of upvotes... – annakata Mar 19 at 14:00
Hehe. Don't worry: we'd both likely crack the 200/day cap without them anyway. – Joel Coehoorn Mar 19 at 14:03
I really didn't mean anything much by the comment on my post. Just expressing a `doh' moment. – dnewcome Mar 25 at 16:23
vote up 0 vote down

i found my solution, thanks

link|flag
vote up 9 vote down

From link text

Four ways to get your local network/machine name:

string name = Environment.MachineName;
string name = System.Net.Dns.GetHostName();
string name = System.Windows.Forms.SystemInformation.ComputerName;
string name = System.Environment.GetEnvironmentVariable(“COMPUTERNAME”);
link|flag
Do they return the same thing or is there some difference between all of them? – epotter Aug 5 at 13:08
vote up 13 vote down

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

link|flag
LOL I guess I shouldn't have taken the extra few seconds to link the MSDN article. – dnewcome Mar 19 at 13:59
But it's a more complete answer, so you'll still gain some upvotes... – Rowland Shaw Mar 19 at 14:05
No hard feelings +1 - SO is just like that – annakata Mar 19 at 14:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.