Tagged Questions
The computer-name tag has no wiki summary.
17
votes
6answers
3k views
How can I use python to get the system name?
Note: I do NOT mean "Window XP", "Linux", "OS X", etc.
I'm writing a chat program for a local network. I would like to know who says what so I would like to use python to get the user-set computer ...
6
votes
1answer
456 views
Get Computer Names of a Lan in C#
I want to create a chat application in which there is a ComboBx. I want to fill it with all the computer names in a network. How can I accomplish this in C#?
3
votes
3answers
145 views
Is this a machine name or what?
I have a third party dll, that is supposed to return machine name.
Sometimes it returns
\\John-PC
some other times it returns
\\192.168.1.120
and recently i discovered that it returns something ...
3
votes
2answers
4k views
How to get computer name or IP from javascript?
I want to get the name of the computer or its IP address through javascript.
How can this be obtained?
3
votes
8answers
6k views
How can I read the client's machine/computer name from the browser?
Is it possible using JavaScript and/or ASP.NET?
1
vote
2answers
236 views
How can one change a Windows 2000 computer name in .NET 2.0?
I'm trying to change a computer's name (host name) on Windows 2000 using .NET 2.0. The computer is not joined to a domain.
Windows XP and higher provides the WMI method Win32_ComputerSystem.Rename, ...
1
vote
5answers
611 views
What's the best method for getting the local computer name in Delphi
The code needs to be compatible with D2007 and D2009.
My Answer: Thanks to everyone who answered, I've gone with:
function ComputerName : String;
var
buffer: array[0..255] of char;
size: ...
0
votes
0answers
83 views
How to convert RemoteEndpoint to IPHostEntry
I have TCP server accepting client connections.
When a client is connected, I would like to know its computer name.
Dns.GetHostEntry()
function is blocking around 2 seconds. So I would like to ...
0
votes
5answers
309 views
Computer name uniqueness [closed]
On LAN, does computer names have to be unique?
or in other words
Are computer names on a given LAN guaranteed to be unique?
0
votes
1answer
389 views
getting client computer name in a flex web application?
is it possible to obtain the computer name of the client using flex?
I made a small intranet application and I need to log computer access to it.
I used Flex 3.4 and web services in .net 3.5
...