We have ten user-names for the software and due to licensing issues, we need 10 separate machines (10 different IPs). Multiple users can remotely access a machine at the same time, but only one user can be using this program on the machine. Okay, so here is the deal. I am developing a simple application in c# Visual that shows whether an instance of a program is currently running on the machines (a simple table). It works well. I thought of adding to the table a column 'owner' - who is running the instance of the program on a particular machine. Can I somehow track the IP of the person who remotely logged in and started the process? There is only one account on each machine.
Thanks.