Archives for 

Tips

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.

SOLVED – How linq order by a Hyphen

A list contains a structure like that: ColumnA 0+ABC0-ABC0001000200030004 then sort the list using order by like list. OrdeBy(o=>o.ColumnA).ToList(), the below is the result: 0+ABC00010002000300040-ABC So the question is why “0+ABC” at the top of the list but “0-ABC” is put to the end. it looks like linq sort “+” and “–” using different methods. […] Continue reading →

Event ID 4999 and mailbox transport delivery service won’t start with Exchange Server 2019

After an upgrade to Microsoft Exchange Server 2019 CU11, the Exchange mailbox transport delivery service is unable to start showing error 1068 “dependency service or group failed to start”. Additionally, Microsoft Exchange Server Extension for Windows Server Backup starts and stops and returns the following event id 4999. Even installing Cumulative Update 10 for Exchange […] Continue reading →