Hi @pazzoide76
I would suggest creating a new global address list, as normally you cannot edit or remove the default one.
In Exchange Management Shell run the following cmdlets:
New-GlobalAddressList -name newGAL -Recipientfilter "((Alias -ne $null) -and (((ObjectClass -eq 'user') -or (ObjectClass -eq 'contact') -or (ObjectClass -eq 'msExchSystemMailbox') -or (ObjectClass -eq 'msExchDynamicDistributionList') -or (ObjectClass -eq 'group') -or (ObjectClass -eq 'publicFolder'))))"
Update-GlobalAddressList newGAL
Then check if you can see all the users in this new global address list.
Get-Recipient -Filter (Get-GlobalAddressList newGAL).RecipientFilter
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.