Forum Discussion
Jeffrey Allen
Nov 01, 2018Silver Contributor
Phantom Account
I have this account in my tenant that goes to more than one person. If you try to find it in the admin center, it doesn't show as a user, contact, group, shared mailbox or a resource. If I go into ...
VasilMichev
Nov 03, 2018MVP
Since you've already confirmed that the object is returned by Get-Mailbox, simply rerun the cmdlets to get all the relevant properties:
Get-Mailbox address@domain.com | ft Name,UserPrincipalName,EmailAddresses,RecipientTypeDetails
or you can do a simple:
Get-Mailbox | fl *
to get all the properties. In general, the Get-Recipient cmdlet is the best way to find a matching object, as it covers all valid recipient types, but it might not return as many properties compared to Get-Mailbox.
Jeffrey Allen
Nov 05, 2018Silver Contributor
Since it was a scheduling mailbox, I deleted it and made a shared mailbox with that name as it was an email address listed as a general mailbox by my assistant before she checked to see if that address belonged to anything else.