Hallo zusammen! Ich hoffe hier kann mir jemand helfen: Ich möchte eine letzte Datenbank aus einem Exchange 2013er Server löschen. Wie so oft scheitert dies an verbleibenden Elementen. Diesmal geht's um eine Systemmailbox. Es wird ausgegeben, das die Mailbox nicht getrennt ist. Die Systemmailbox ist nicht SoftDeleted oder Disabled. Das ist leider das Problem. Quasi die "Letzte Leiche" Schaut mal: [PS] C:\Windows\system32>Remove-StoreMailbox -Database MDB -Identity "33181f7f-5e4f-4d02-8e39-cd798d0bc304" Cmdlet Remove-StoreMailbox an der Befehlspipelineposition 1 Geben Sie Werte für die folgenden Parameter an: MailboxState: Disabled Das Postfach 33181f7f-5e4f-4d02-8e39-cd798d0bc304 ist nicht getrennt. ####################### [PS] C:\Windows\system32>Remove-StoreMailbox -Database MDB -Identity "33181f7f-5e4f-4d02-8e39-cd798d0bc304" Cmdlet Remove-StoreMailbox an der Befehlspipelineposition 1 Geben Sie Werte für die folgenden Parameter an: MailboxState: Softdeleted Das Postfach 33181f7f-5e4f-4d02-8e39-cd798d0bc304 ist nicht getrennt. ######################## Merkwürdig finde ich: IsDatabaseCopyActive : True und ObjectState : Unchanged ######################## [PS] C:\Windows\system32>get-mailboxstatistics | fl Cmdlet Get-MailboxStatistics an der Befehlspipelineposition 1 Geben Sie Werte für die folgenden Parameter an: Identity: 33181f7f-5e4f-4d02-8e39-cd798d0bc304 RunspaceId : 6e2b974d-83db-422b-8d7c-e6279f6baaea MoveHistory : CurrentSchemaVersion : 0.126 AssociatedItemCount : 0 DeletedItemCount : 0 DisconnectDate : DisconnectReason : DisplayName : SystemMailbox{9bb10165-b57c-4fd0-b31a-df34ef594889} ItemCount : 2 LastLoggedOnUserAccount : LastLogoffTime : LastLogonTime : LegacyDN : /o=xxxxxxxxxxx/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipien ts/cn=SystemMailbox{9bb10165-b57c-4fd0-b31a-df34ef594889} MailboxGuid : 33181f7f-5e4f-4d02-8e39-cd798d0bc304 MailboxType : Private ObjectClass : Unknown StorageLimitStatus : TotalDeletedItemSize : 0 B (0 bytes) TotalItemSize : 4.175 KB (4,275 bytes) MailboxTableIdentifier : Database : MDB ServerName : EX01 DatabaseName : MDB IsDatabaseCopyActive : True IsQuarantined : False QuarantineDescription : QuarantineLastCrash : QuarantineEnd : ExternalDirectoryOrganizationId : 00000000-0000-0000-0000-000000000000 IsArchiveMailbox : False IsMoveDestination : False MailboxMessagesPerFolderCountWarningQuota : MailboxMessagesPerFolderCountReceiveQuota : DumpsterMessagesPerFolderCountWarningQuota : DumpsterMessagesPerFolderCountReceiveQuota : FolderHierarchyChildrenCountWarningQuota : FolderHierarchyChildrenCountReceiveQuota : FolderHierarchyDepthWarningQuota : FolderHierarchyDepthReceiveQuota : FoldersCountWarningQuota : FoldersCountReceiveQuota : NamedPropertiesCountQuota : MessageTableTotalSize : 1.625 MB (1,703,936 bytes) MessageTableAvailableSize : 1.438 MB (1,507,328 bytes) AttachmentTableTotalSize : 0 B (0 bytes) AttachmentTableAvailableSize : 0 B (0 bytes) OtherTablesTotalSize : 480 KB (491,520 bytes) OtherTablesAvailableSize : 224 KB (229,376 bytes) DatabaseIssueWarningQuota : 1.9 GB (2,040,110,080 bytes) DatabaseProhibitSendQuota : 2 GB (2,147,483,648 bytes) DatabaseProhibitSendReceiveQuota : 2.3 GB (2,469,606,400 bytes) Identity : 33181f7f-5e4f-4d02-8e39-cd798d0bc304 MapiIdentity : 33181f7f-5e4f-4d02-8e39-cd798d0bc304 OriginatingServer : ex01.xxxxxxxxxxx.local IsValid : True
ObjectState : Unchanged
Um das gleich vorweg zu nehmen:
Es ist keine Arbitration Mailbox, Es ist keine Archiv Mailbox, Es ist keine RemoteArchiv Mailbox, Es ist keine PublicFolder Mailbox. Nichts von allem.... Auch nicht SoftDeleted oder Disabled [PS] C:\Windows\system32>Get-MailboxStatistics -Database MDB | where {$_.DisconnectReason -eq "SoftDeleted"} | foreach {Remove-StoreMailbox -Database $_.database -Identity $_.mailboxguid -MailboxState SoftDeleted} [PS] C:\Windows\system32>Get-MailboxStatistics -Database MDB | where {$_.DisconnectReason -eq "Disabled"} | foreach {Remove-StoreMailbox -Database $_.database -Identity $_.mailboxguid -MailboxState Disabled}
Hat Jemand eine plausible Erklärung?
Danke!