There is three cmd-lets in Exchange EMS:
- Get-Mailbox - returns object type [Mailbox];
- Get-MailboxStatistics - returns object type [MailboxStatistics];
- Get-Recipient - returns object type [ReducedRecipient].
There are some "ID"-like properties in each of these object type. After reading the documentation here, here and here I still do not understand what these IDs mean and which of these properties uniquely determine the mailbox within the organization.
Comparing the output of these three cmdlets on the same mailbox, I see this:
- [Mailbox].ExchangeGuid = [MailboxStatistics].MailboxGuid = [MailboxStatistics].Identity = [MailboxStatistics].MapiIdentity = [ReducedRecipient].ExchangeGuid
- [Mailbox].ArchiveGuid = [MailboxStatistics](there is no such property) = [ReducedRecipient].ArchiveGuid
- [Mailbox].Guid = [MailboxStatistics].MailboxGuid = [ReducedRecipient].Guid
My question is:
- Where can i find detailed description for these propreties? MS docuemtation hasn't
- Which of these properties can be used to uniquely compare the results of the specified cmdlets?
Thanks!