In a thin client environment, where each client is logged on the same server (Windows) while running the same .exe, I would like to know which API call I have to make in order to have a "unique thin client id" that Windows uses to know where to send the information and from where to catch the input. I'd like to put a "unique name" on each one of the thin clients in order to know who asked to run this .exe.
Exemple why I need it :
if getThinClientName = "clientA" then
doThis
else if getThinClientName = "clientB" then
doThat
Thank you
Exemple why I need it :
if getThinClientName = "clientA" then
doThis
else if getThinClientName = "clientB" then
doThat
Thank you