Deleted AD account and mailbox on Litigation Hold in Exchange 2013 CU7

Hi,

We have recently leveraged Litigation Hold and unlimited mailbox sizes in lieu of GFI MailboxArchiver.

Our user accounts admin just deleted an AD user including the mailbox in ADUC and watched it as it vanished (refresh button) in EAC.

As far as I know the mailbox should still be on the exchange server, how can I verify that? My aim is to make sure the mailbox has not been permanently deleted since we are required to maintain it for 7 years.

I have rewritten the process for the user admins, they should Disable user in ADUC, Disconnect Mailbox, Delete user in ADUC, is that the right way to delete the user but maintain the mailbox for 7 years? Command used: Get-Mailbox -ResultSize Unlimited -Filter {RecipientTypeDetails -eq "UserMailbox"} | Set-Mailbox -LitigationHoldEnabled $true -LitigationHoldDuration 2555

Tnx,

Timotatty

March 17th, 2015 4:47pm

Hi,

Generally, disabled and deleted mailboxes are retained in the mailbox database until the deleted mailbox retention period expires, which is 30 days by default. After the retention period expires, the mailbox is permanently deleted or purged.

If the mailbox is still retained in database, we can run the following command to list all deleted or disabled mailbox:

Get-MailboxDatabase | Get-MailboxStatistics | where {$_.disconnectdate ne $null} | FL displayname,MailboxGUID,DisconnectReason,DisconnectDate

If you want to retain the mailbox for 7 years, please make sure the mailbox retention period has been set for 7 years. We can run the following command to check it:

Get-MailboxDatabase | fl Identity,*Retention*

If it is not set to 7 years, we can run the following command to set it:

Get-MailboxDatabase | Set-MailboxDatabase -MailboxRetention dd.hh:mm:ss

https://technet.microsoft.com/en-us/library/bb232039(v=exchg.150).aspx

Re

Free Windows Admin Tool Kit Click here and download it now
March 18th, 2015 5:55am

Thanks Winnie,

I will try this tomorrow.

Tim

March 18th, 2015 1:08pm

Thanks Winnie,

I will try this tomorrow.

Tim

Free Windows Admin Tool Kit Click here and download it now
March 20th, 2015 3:10am

Hi Winnie,

It seems like your suggestion works. But still, something is unclear:

Litigation hold is on so why do I still need to increase the retention time to 7 years? I would have thought that is automatically would be retained. What am I missing?

Tnx,

Tim

March 20th, 2015 9:12am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics