Forum Discussion

galama2160's avatar
galama2160
Copper Contributor
Jul 08, 2020

Error message by creating shared mailbox Exchange 2016

received an error message during the creation of a new shared mailbox.
The shared mailbox was created despite the error message.
it happens only when adding send as permissions to new shared mailbox
we host the exchange server 2016 on premise and latest CU is installed
Exchange Server is installed in an Forest with 18 Domains and 46 Domain Controllers.
Looks like an issue regarding not connecting to correct DC while trying to set up Active Directory Based Send AS Permission on new Shared Mailbox

help would be welcome 🙂

4 Replies

  • Don_Vlogeer's avatar
    Don_Vlogeer
    Copper Contributor
    I have the same issue, it happen to specific admin. not sur you found any resolution on this matter
    • FcoManigrasso's avatar
      FcoManigrasso
      Iron Contributor

      Hi Don_Vlogeer,

      From my perspective the problem is related to connectivity/replication time. If you run the configuration of a new shared mailbox through ECP or a single PS line, the shared mailbox will be created but in some cases the permissions are not replicated, ( ECP gives an error but PS not ). If you grant the permissions after creation, all works fine. 

      I tested it with the 2 following examples:

       

      1- Created a new Shared, ("Sales Department2") mailbox by PS piping all the desired permissions:

       

      New-Mailbox -Shared -Name "Sales Department3" -DisplayName "Sales Department3" -Alias SalesDepartment3 | Set-Mailbox -GrantSendOnBehalfTo "EmailAddress" | Add-MailboxPermission -User "EmailAddress" -AccessRights FullAccess -InheritanceType All

      PS gives no errors:

      But in ECP I can see the shared mailbox without the FullAccess permissions:

       

      2- Then I created another one, ("Sales Department3") but running it as a script, not with a single line, in order to get the mailbox created before granting the permissions:

       

      New-Mailbox -Shared -Name "Sales Department3" -DisplayName "Sales Department3" -Alias SalesDepartment3
      Get-Mailbox SalesDepartment3 | Set-Mailbox -GrantSendOnBehalfTo "EmailAddress"
      Get-Mailbox SalesDepartment3 | Add-MailboxPermission -User "EmailAddress" -AccessRights FullAccess -InheritanceType All

       

       That worked fine and I see the permissions:

       

       

      • Don_Vlogeer's avatar
        Don_Vlogeer
        Copper Contributor
        Dear FcoManigrasso

        Thank you for your respond, we did try creating shared mailbox via PS but still throwing exact error on ECP. I even make a move request for problematic admin and problem stay. out of clues on this matter.

Resources