In Exchange it’s possible to hide a Mailbox from the (Global) Address List. You can do that in the Exchange System Manager:

image

But after you have hidden a Mailbox you cannot create an Outlook profile for it (or add it as an extra mailbox).

image

When you click Check Name in the wizard you’ll get an error:

image

The common workaround is to remove the “Hide from Exchange address lists” setting, create the profile (or add the Mailbox) and afterwards set it again.

Once the profile is created it all keeps working.

There is an easier solution though!


If you add the mailbox using the legacyExchangeDN attribute then Outlook happily accepts.

This works because Outlook really uses this value and not the user’s accountname to connect to a Mailbox.

 The Error above occurs because Outlook cannot resolve the username to the legacyExchangeDN name using the Address List.

So how do we get the user’s legacyExchangeDN?

It can be read using ADSI Edit:

image

But I prefer to read it with a script since it means less clicking.

Using PowerShell it’s also a very simple script:

Now we take the result, in my case:

Now we copy & paste this into the User Name Edit:

image

And Outlook will resolve it to the username Open-mouthed smile

image

The same procedure can be used if you want to Add a Hidden Mailbox as Additional Mailbox:

image