I always run the Exchange Best Practices Analyzer at the end of a transition project to Exchange Server 2007 or 2010, just to catch any issues that still might exist in the organization.

One of the issues I have encounted a few times is that the ExBPA will report the Default Global Address List missing.

Exchange Best Practices Analyzer Reports Default Global Address List Missing

This error is confusing if you simply look at your Address Lists in the organization and can clearly see the Default Global Address List is present.  However if you dig a little deeper in the Exchange Management Shell you can see the problem:

[PS] C:Admin>Get-GlobalAddressList | fl

IsDefaultGlobalAddressList   : False
Name                         : Default Global Address List

As you can see the IsDefaultGlobalAddressList attribute is set to false. Unfortunately this is not as simple to fix as just running Set-GlobalAddressList, as there is no argument for that cmdlet to change that attribute.

Instead you must modify the attribute using ADSIEdit.msc.  Launch ADSIEdit.msc and connect to the Configuration naming context.

Exchange Best Practices Analyzer Reports Default Global Address List Missing

Navigate to the Default Global Address List object.  You’ll find it in CN=Configuration,dc=yourdomain/CN=Services/CN=Microsoft Exchange/CN=yourorganization/CN=Address Lists Container/CN=All Global Address Lists.  Open the properties of the GAL object.

Exchange Best Practices Analyzer Reports Default Global Address List Missing

Find the msExchRecipientFilterFlags attribute in the list.

Exchange Best Practices Analyzer Reports Default Global Address List Missing

Edit the attribute value and set it to 3.

Exchange Best Practices Analyzer Reports Default Global Address List Missing

Press OK and then apply the changes.

You may need to wait a short time for Active Directory to replicate the change.  When you query the Default Global Address List properties now you should see that IsDefaultGlobalAddressList is set to True, and ExBPA will not report this error in future scans.

[PS] C:Admin>Get-GlobalAddressList | fl

IsDefaultGlobalAddressList   : True
Name                         : Default Global Address List

About the Author

Paul Cunningham

Paul is a former Microsoft MVP for Office Apps and Services. He works as a consultant, writer, and trainer specializing in Office 365 and Exchange Server. Paul no longer writes for Practical365.com.

Comments

  1. Sergei

    Thanks a lot man!
    In my case after 2007->2010 migration it was showing as Defaults but not updating until I did described above.

  2. Josh Morey

    Thank you kindly. This tip helped me greatly in a pinch!

Leave a Reply