Jump to content
  • 0

XA6.5 Query db for user connections?


Kevin Dodge

Question

Xenapp 6.5 farm, EdgeSight crapped out so was shutdown. Currently without Edgesight server running is there a way to query database to find user connections using powershell or SQL?

 

Is there a way to look up user connections via Netscaler?

 

We are in the process of setting up MAS but would like to look up some user connections prior to this setup. 

Link to comment

1 answer to this question

Recommended Posts

  • 0

Hi,

You can use the below PS commands to get the list of connected users.

 

#List all sessions with status different than Listening or Connected

Get-XASession |Select SessionId, AccountName, ServerName, State |Where {$_.State -ne "Listening" -and $_.State -ne "Connected"}

 

#List all session with status Active or Disconnected

Get-XASession |Select SessionId, AccountName, ServerName, State |Where {$_.State -eq "Active" -or $_.State -eq "Disconnected"}

 

See if this helps...

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...