Dear all,

Maybe someone has got an idea how to get IP Address information from the "real" workstation when working in a Terminal Session?
Code:

Break On
Dim $NIC, IPAddress
$NIC = 0
If NOT @TSSESSION
While NOT EnumIPInfo($NIC,0,0) = ""
$IPAddress = EnumIPInfo($NIC,0,0)
? $IPAddress
$NIC = $NIC + 1
Loop
Else
? "How do I get the IP Addresses of my real WorkStation?"
EndIf


Thanks for all suggestions