SOLVED – Guest user does not appear in Global Adddress Book
Problem – In Offline Address Book and GAL, a single guest user is not showing up in the Global Address Book. All other guests (we have several thousand) do show up.
You May Also Like: SOLVED – How To Get All Data From Last 5 Minutes in SQL
Solution
If you run the PowerShell command for this user get-azureaduser -objectid “theirobjectid” | format-list , set that to $true.
It is not set by default, so if ShowInAddressList doesn’t show up, then it is not set. You can use PowerShell to change ShowInAddressList to $true:
set-azureaduser -objectid “theirobjectid” -ShowInAddressList $true
https://docs.microsoft.com/en-us/powershell/module/azuread/set-azureaduser?view=azureadps-2.0
If you go to their profile on Azure AD their Object Id can be found on their page.
You May Also Like: SOLVED – How To Update Connection Policy Of Synapse Dedicated SQL Pools
We hope the solutions in the above-mentioned article were helpful. Feel free to share your views with us.