How to find out the IP-address of a remote desktop client on Windows server
From a command shell (cmd) issue the command:
netstat -a | find “:3389” | find “ESTABLISHED”
This will a result in a list of all remote IP-addresses connected using RDP to the server.
If the server is using a non-standard port for RDP, replace 3389 with the non-standard port.