How can i get the Client Computer name

user609511 picture user609511 · Dec 28, 2012 · Viewed 20.3k times · Source

I am using C# Framework 4.0 Windows Form. My program is installed on a server TSE. There are 11 light clients that connect to this server.

When one of these clients launches my progam, how can I get his PC name ?

Answer

Panagiotis Kanavos picture Panagiotis Kanavos · Dec 28, 2012

Assuming you are using Terminal Services and Remote Desktop, you can check the CLIENTNAME environment variable to retrieve the client machine's name, although some people report problems with it.

You can get the value with Environment.GetEnvironmentVariable, eg

var clientName=Environment.GetEnvironmentVariable("CLIENTNAME");

For an API based method, check Preferred way Of getting Client name From Terminal Server Session which shows how to use WMI or the Terminal Services API to retrieve the client name

UPDATE

Hmm, seems the Cassia library encapsulates the TS API. You can get the client name with

new TerminalServicesManager().CurrentSession.ClientName

Another SO thread shows how to retrieve the current session's client name or the client names of all sessions.