segunda-feira, 23 de novembro de 2015

Removing a Mailbox from Quarantine in Exchange Server 2013

 

n Exchange Server 2010 the process required more manual work (you can check the step by step http://itprocentral.com/releasing-a-mailbox-from-exchange-server-2010-quarantine/ ), however a new set of cmdlets *-MailboxQuarantine were introduced and they help the administrator to add and remove mailboxes in the quarantine.

A good way to check a list of all mailboxes that are being quarantined is using the following cmdlet:

Get-Mailbox –Server <Server-Name> –ResultSize unlimited | Get-MailboxStatistics | Where-Object { $_.IsQuarantined –eq $True } | Select DisplayName,IsQuarantined,QuarantineEnd

In order to remove a mailbox from there, just use the following the cmdlet:

Disable-MailboxQuarantine <mailbox>

 

http://itprocentral.com/removing-a-mailbox-from-quarantine-in-exchange-server-2013/

Sem comentários: