Exporting List of Active Sessions from Nedrio.

How do I export a list of connected users (active sessions) from Nerdio? I came across this - PowerShell Module: Export a List of User Sessions – Nerdio Manager for Enterprise (getnerdio.com) But if there's a better/quicker way to do it. Thanks

1

Comments (3 comments)

0
Avatar
Stefan Beckmann

At the moment I don't know a way to export the users under “All user sessions” or another user list. Alternatively, you could query it with KQL:

WVDConnections
| where State == "Connected" and TimeGenerated > ago(12h) 
| order by TimeGenerated desc  
| project UserName, SessionHostName, TimeGeneratedCredits: https://techcommunity.microsoft.com/t5/azure-virtual-desktop/list-of-active-user-sessions-with-host-details/m-p/1624864
0
Avatar
Vimal Rai

Nerdio Product Support - is there a simple and easy way to export active session users from Nerdio..? Thanks

0
Avatar
Toby Skerritt

Hi Vimal Rai, as you suggest, the best way to do this currently is via the PowerShell module, alternatively Stefan Beckmann's suggestion of a KQL query is also possible.

I will capture your request to export this information from the console in our feature backlog. Thanks. 

Please sign in to leave a comment.