Removendo caixa de correio e arquivo do Exchange

1

Quando eu removo uma caixa de correio do Exchange (2010), a caixa de correio é removida e excluída após o "período de espera" das caixas de correio excluídas; a conta do AD também é excluída imediatamente.

Alguém pode confirmar o que acontece com a caixa de correio de arquivo? Ele é excluído imediatamente, ou após o "período de espera" ou é órfão?

    
por marcwenger 02.02.2017 / 23:49

1 resposta

0

Acho que este resumo explica o que você está perguntando, mas adicionarei alguns exemplos do Exchange PowerShell abaixo sobre como excluir com vigor uma caixa de correio, se necessário, mas abaixo informa exatamente como isso funciona.

Summary

In Exchange, if you delete a mailbox, it is disconnected for a default period of 30 days (the mailbox retention period), and you can reconnect it at any point during that time. Deleting a mailbox does not mean that it is permanently deleted (or purged) from the information store database right away, only that it is flagged for deletion. At the end of the mailbox retention period, the mailbox is permanently deleted from the database. You can also permanently delete the mailbox by choosing to purge it at any time.

This also means that if you mistakenly delete a mail-enabled user account, you can recreate that user object, and then reconnect that mailbox during the mailbox retention period.

Configure the deleted mailbox retention period at the mailbox store object level.

source

Exemplos do PowerShell

Você precisará especificar <ExchangeDBName> e <ExchangeMBGuid> de acordo.

## --// get all information about the mailbox of the deleted user and disconnected mailbox.
Get-MailboxStatistics -Database "<ExchangeDBName>" | Where-Object {$_.DisconnectDate -Notlike $NULL} | FL DisplayName, DisconnectDate, MailboxGuid

## --// get mailboxguid which is needed to remove the mailbox completely
Remove-Mailbox -Database "<ExchangeDBName>" -StoreMailboxIdentity <ExchangeMBGuid>
    
por 03.02.2017 / 05:42