Resource mailbox - ADUC user account

Imran Shabir 21 Reputation points
2024-10-24T13:15:29.2133333+00:00

Hi

One of our tech guys created a user account on-premise AD, enabled the mailbox on Exchange Online (powershell) and then converted the account to a Room mailbox (powershell). My question is without disrupting a live room account, can i delete this or is disable the only option?

I found the below link but doesnt mention about what to do with the account, ie delete. https://learn.microsoft.com/en-us/answers/questions/642282/convert-user-account-to-room-resource-account

Thanks in advance.

Microsoft Exchange Online
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,619 questions
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,561 questions
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,125 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Vasil Michev 107.3K Reputation points MVP
    2024-10-24T19:16:06.2033333+00:00

    If you delete it, the mailbox will be disconnected/unusuable. You need the corresponding user object for it to work, but you can safely disable it if you want.

    1 person found this answer helpful.
    0 comments No comments

  2. Xintao Qiao-MSFT 3,695 Reputation points Microsoft Vendor
    2024-10-25T02:41:41.2366667+00:00

    Hi, @Imran Shabir

    Vasil Michev's summary is accurate. I'll just make a few additions.

    If you want to manage the mailbox without affecting the normal functioning of the currently active resource room, the best practice is to disable the mailbox instead of deleting it.

    Disabling the mailbox removes the Exchange attribute from the user account, but retains the account in AD. Deleting a mailbox deletes both the mailbox data and the user account from AD.

    Disabling a mailbox allows you to re-enable it when you need to. Deleting a mailbox can disrupt some meetings and affect users who rely on it.

    Disable mailboxes using the command:

    Disable-Mailbox -Identity "RoomMailboxName"
    

    Once you are sure that the mailbox is no longer needed in the future and will not affect any users, you can use the following command to delete the mailbox:

    Remove-Mailbox -Identity "RoomMailboxName"
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    0 comments No comments

  3. Imran Shabir 21 Reputation points
    2024-10-28T15:18:33.2066667+00:00

    Hi @Vasil Michev and @Xintao Qiao-MSFT

    thank you for your responses.

    Would there be a way to offload on Exchange Online as its a Resource/Room calendar? i mean like deleting the on-prem essence or fully move it to Azure Entra/Exchange Online without the presence on local AD.

    Imran


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.