Processes in Microsoft 365 for setting up Office apps, redeeming product keys, and activating licenses.
well, I got 10 duplicates...
Found them by running:
$a = Get-Recipient -RecipientTypeDetails GuestMailUser -ResultSize unlimited # might take loooooong... ;)
$a | Group-Object ExternalEmailAddress | sort count -desc | select -first 20 | ft -au count,name,group
If the property "Group" contains more than one GUID, you've got more than one recipient in your system with the same ExternalEMailAddress.
Cross-check:
$a | Group-Object primarySMTPAddress | sort count -desc | select -first 20 | ft -au count,name,group
Let's dig a bit...
Just get all into one object when there is a count greater than 1:
$b = $a | Group-Object ExternalEmailAddress | ? count -gt 1
Let's check, when whose have been created or changed:
$b.group | ft -au name,externalemailad*,whenc*
So my duplicates had all been created on 16.12.2024 17:25 UTC (or the other way: 2024-12-16 5:25pm UTC).
Anyone else at this time or close to?
Best, Alex