Exchange Admin Centre disappear

Matej Čech 1 Reputation point
2022-09-12T14:21:12.397+00:00

Hello,

I would like to ask if anyone has encountered a similar problem.

In our Exchange Hybrid, when I want to create a new o365 account (as for example according to the instructions from https://www.alitajran.com/create-office-365-mailbox-exchange-hybrid/ ), "Office 365 Mailbox" is not in the menu (in figures)

240172-clipboard01.jpg

thx for little help

Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
2,105 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Joyce Shen - MSFT 16,666 Reputation points
    2022-09-13T06:34:30.26+00:00

    Hi @Matej Čech

    According to the screenshot you shared above, your issue seems to be related to RBAC, take a reference at the link here: RBAC hides the Office 365 Mailbox creation link
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.

    It’s all based around one missing role entry. To see that link you need access to the Get-RemoteDomain command. Members of Recipient Management do not have this.

    New-ManagementRole -Parent "View-Only Configuration" -Name "Office 365 Provisioning Link"  
    Get-ManagementRoleEntry "Office 365 Provisioning Link\*" | Where { $_.Name -NotLike "Get-RemoteDomain" } | Remove-ManagementRoleEntry  
    New-ManagementRoleAssignment -Role "Office 365 Provisioning Link" -SecurityGroup "Recipient Management"  
    

    If an Answer 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.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.