Getting a list of users that are logged in?

Is there a way of getting a list of users and what terminals they are logged into? I know I can get a full list of users but I wanted to know who exactly was logged into what computers or just a list of users at least.

Does anyone know of a way to get this info? Thanks

You can put this code on a button or something and populate a table on the same window (in this case the table name is ‘SessionTable’). I use this to see who has active clients open and what IP addresses those clients are open on.

[code]# Get list of active sessions on node and populate the table on

the right with session list.

table = event.source.parent.getComponent(“SessionTable”)
sessions = system.util.getSessionInfo()
table.data = system.db.toDataSet(sessions)[/code]

1 Like

Awesome, that’s exactly what i needed!!