Hi,@Mateusz Domański
Thanks for posting your question in the Microsoft Q&A forum.
It sounds like you're aiming to make guest users visible in the Global Address List (GAL) by default in your Entra ID (Azure AD). The setting HiddenFromAddressListsEnabled
being set to TRUE
by default for guest users is indeed causing them to be hidden from the GAL.
To achieve your goal, you'll need to Update the existing users to make them visible.
Get-MailUser -Filter {RecipientTypeDetails -eq "GuestMailUser"} | Set-MailUser -HiddenFromAddressListsEnabled $false
Ensure future guest users are visible by default, this feature is not currently available. Currently it is only possible to periodically check for guest users and update the GAL through an automated script.
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.