Powershell Exchange – Postfach direkt löschen ohne Wartezeit

# Mailbox deaktivieren
Disable-Mailbox Joern.Walter@ndsedv.de

# GUID und Datenbank ermitteln:
Get-MailboxDatabase | Get-MailboxStatistics | Where{ $_.DisconnectDate -ne $null } |fl DisplayName, Database, Identity, DisconnectReason

# Mailbox entfernen
Remove-StoreMailbox -Database “DB1” -Identity “ec6a552b-22e7-47d2-318e-b333e5e88e75” -MailboxState “Disabled”

# Mailbox neu erstellen
Enable-Mailbox -Identity ndsedv.de\Joern.Walter -Database DB1