Actual Result:
RecoveryPointsInfo and MasterCoreInfo properties are missing during execution get-replicatedservers command.

The MasterCoreInfo and RecoveryPointsInfo propreties are missing
When you use Get-ProtectedServers in PowerShell script like:
$ReplicatedServers = Get-ReplicatedServers | Sort-Object DisplayName foreach( $ReplicatedServer in $ReplicatedServers) {
$MachineName = $ReplicatedServer.DisplayName
$RecoveryPointCount = $ReplicatedServer.RecoveryPointsInfo.RecoveryPointCount
$MasterCoreHostName = $ReplicatedServer.MasterCoreInfo.HostName
}
The script does not work.
Expected result:
The MasterCoreInfo and RecoveryPointsInfo propreties are shown after execution of PS command.
