Site icon Franky's Web

Exchange 2010 SP1: delete separate mailboxes

With Service Pack 1 for Exchange Server 2010, something has changed with regard to separate mailboxes. There is a new CMDlet with which separate mailboxes can be deleted. With Exchange 2010 without Service Pack 1 this worked as follows here beschrieben über „Remove-Mailbox“

Seit Service Pack 1 für Exchange 2010 ist nun das CMDlet „Remove-StoreMailbox“ hinzugekommen. Das neue CMDlet ist nur für getrennte Postfächer zuständig. Aktive (Online) Postfächer können damit nicht gelöscht werden.

Die Vorgehensweise bleibt wie bei „Remove-Mailbox“ zunächst gleich:

If the user associated with a mailbox has only recently been deleted, the disconnected mailbox will not be displayed directly in the list of disconnected mailboxes in the Exchange administration console. If you do not want to wait until Exchange automatically searches for disconnected mailboxes, you can initiate this yourself using the following command:

Get-MailboxDatabase | Clean-MailboxDatabase

The disconnected mailboxes are then displayed in the Exchange administration console, where they can be reconnected but not deleted. The mailbox can only be deleted via the GUID of the mailbox. This can be displayed as follows:

get-mailboxdatabase | get-mailboxstatistics | Where{ $_.DisconnectDate -ne $null } |fl displayName,Identity,disconnectdate,database

The new CMDlet continues from here:

Remove-StoreMailbox -database „Name der Datenbank“ -Identity „Wert der bei Identity steht“ -MailboxState SoftDeleted

Example:

Remove-StoreMailbox -database „MBDB01“ -Identity „bcfd82dc-0b14-4ee3-aceb-f369159ddbc1“ -MailboxState SoftDeleted

Das Beispiel löscht ein Postfach welches den Status „SoftDeleted“ hat. Ein deaktiviertes Postfach löscht man indem man den Parameter „-MailBoxState“ auf „Disabled“ setzt.

Example:

Remove-StoreMailbox -database „MBDB01“ -Identity „bcfd82dc-0b14-4ee3-aceb-f369159ddbc1“ -MailboxState Disabled

I will describe the differences between SoftDeleted and Disabled in the next article.

Exit mobile version