How can I replace new OAB from old OAB

exchange beginner 1 Reputation point
2021-01-05T08:42:22.833+00:00

Hi all

I am running Exchange 2016 and want to replace OAB(Default Global Address List) to new naming OAB.
Is it possible? How can I replace new OAB?

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,392 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Ashok M 6,506 Reputation points
    2021-01-05T10:30:26.4+00:00

    Hi @exchange beginner ,

    You can create new OAB and make it as default. Please follow the steps,

    https://learn.microsoft.com/en-us/exchange/email-addresses-and-address-books/offline-address-books/oab-procedures?view=exchserver-2016#use-the-exchange-management-shell-to-view-offline-address-books

    If the above suggestion helps, please click on "Accept Answer" and upvote it

    1 person found this answer helpful.

  2. Kael Yao-MSFT 37,576 Reputation points Microsoft Vendor
    2021-01-06T02:26:31.46+00:00

    @exchange beginner
    Hi,

    Is it possible?
    Yes. You can create a new OAB via running the New-OfflineAddressBook command in EMS:

    New-OfflineAddressBook -Name <NewOABName> -AddressLists <AddressLists in this OAB>  
    

    How can I replace new OAB?
    To replace the old or default OAB with the new created one, you can use this command.

    Set-OfflineAddressBook -Identity <NewOABName> -IsDefault $true  
    

    Or you can also add the "-IsDefault $true" parameter when creating the new OAB:

    New-OfflineAddressBook -Name <NewOABName> -AddressLists <AddressLists in this OAB> -isDefault $true  
    

    53832-48.png

    53854-49.png


    If the response is helpful, please click "Accept Answer" and upvote it.
    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.