I am using a powershell script to pull Remote Desktop Session information. This script works on the remote RD server.

Get-RDUserSession | Sort-Object -Property UserName | Format-Table -Property UserName, CollectionName, DomainName, HostSErver, SessionState, CollectionType, CreateTime, DisconnectTime -GroupBy UserName

When I use this sensor on PRTG I receive the error. XML: The Returned XML does not match the expected scheme (code: PE233)-JSON: The returned JSON does not match the expected structure.

I have changed windows credentials to match my own, and the admin credentials we built for PRTG. Both have not changed anything.

I have added the ConvertTo-XML and ConverTO-JSON commands. These have changed nothing.

I have done all of the above with only using the command Get-RDUserSession

I was hoping someone can point me in the right direction.

Thank you


Article Comments

Hi there,

The EXE/Script Advanced Sensor has an option called "Result Handling" which will write additional log files. I would recommend to enable it so you can check for more details.


Jul, 2021 - Permalink

I have had the "store result in case of error" set. I do not know where to find the "result"


Aug, 2021 - Permalink

Here is the returned value I receive in x86 powershell from the PRTG server powershell to the remote server powershell. I am wondering if the returned XML is not returning a PRTG friendly forma.

PS C:\Users\xxxxxx> ConvertTo-Xml -As "string" -InputObject (Get-RDUserSession -ConnectionBroker xxxx.xxxx.xxxx) <?xml version="1.0" encoding="utf-8"?> <Objects> <Object Type="System.Object[]"> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> <Property Type="Microsoft.RemoteDesktopServices.Management.RDUserSession"> <Property Name="ServerName" Type="System.String">xxxxxxx</Property> <Property Name="SessionId" Type="System.UInt32">5</Property> <Property Name="UserName" Type="System.String">xxxxx</Property> <Property Name="DomainName" Type="System.String">xxxxxxx</Property> <Property Name="ServerIPAddress" Type="System.String">xxx.xxx.xxx.xxx</Property> <Property Name="TSProtocol" Type="System.UInt32">2</Property> <Property Name="ApplicationType" Type="System.String"></Property> <Property Name="ResolutionWidth" Type="System.UInt32">0</Property> <Property Name="ResolutionHeight" Type="System.UInt32">0</Property> <Property Name="ColorDepth" Type="System.UInt32">0</Property> <Property Name="CreateTime" Type="System.DateTime">1/28/2021 7:51:50 PM</Property> <Property Name="DisconnectTime" Type="System.DateTime">8/2/2021 3:25:16 AM</Property> <Property Name="SessionState" Type="Microsoft.RemoteDesktopServices.Management.SESSION_STATE">STATE_CONNECTED</Property> <Property Name="CollectionName" Type="System.String">Jmph-Collection</Property> <Property Name="CollectionType" Type="Microsoft.RemoteDesktopServices.Management.COLLECTION_TYPE">xxxxxxxx</Property> <Property Name="UnifiedSessionId" Type="System.Nullable`1[[System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> <Property Name="HostServer" Type="System.String">xxxxxx.xxxxxxxx.xxxxxx</Property> <Property Name="IdleTime" Type="System.UInt32">133837983</Property> <Property Name="RemoteFxEnabled" Type="System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx]]" /> </Property> </Object>


Aug, 2021 - Permalink

This result looks not like a well structured XML for PRTG. Please see this article for more information how the XML needs to look like: https://www.paessler.com/manuals/prtg/custom_sensors#advanced_sensors


Aug, 2021 - Permalink