Room resource

michael lustig 356 Reputation points
2021-10-21T10:09:23.073+00:00

Hello everyone

I did mistake..I deleted room resource in my organization by ecp(exchange 2016).
And all the appointments was deleted.

I created a new room with a same name and alias.

How can I restore the appointments?

Thanks

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,335 questions
{count} votes

Accepted answer
  1. Kael Yao-MSFT 37,491 Reputation points Microsoft Vendor
    2021-10-22T02:15:42.537+00:00

    Hi @michael lustig

    By default if a mailbox is deleted, it would be kept for 30 days in the database.
    And you may use the New-MailboxRestoreRequest command to restore the mailbox.

    Here are the steps:

    1. run this command in Exchange Management Shell to get the guid of the deleted room mailbox: Get-MailboxDatabase | foreach {Get-MailboxStatistics -Database $.DistinguishedName} | where {($.DisplayName -eq "room mailbox name") -and ($_.DisconnectReason -eq "SoftDeleted" -or "Disabled")} | Format-List DisplayName,DisconnectReason,DisconnectDate,MailboxGuid

    142732-17.png
    2.if the room mailbox is shown in the result, run the following command to restore it to the newly created room mailbox or another room mailboxes

    New-MailboxRestoreRequest -SourceStoreMailbox <Mailbox guid from the output> -SourceDatabase <database which hosts the deleted room mailbox> -TargetMailbox <newly created room mailbox name> -AllowLegacyDNMismatch  
    

    142676-18.png

    3.Once the restore request completes, you may see the appointments restored in the new room mailbox


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    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.


0 additional answers

Sort by: Most helpful