Exchange 2007: After migration, mailbox is shown as legacy mailbox
If you migrated a mailbox from another Exchange System (2000/2003) mailboxes are sometimes migrated as legacy mailbox. To fix this issue, user following cmdlet in PowerShell: Set-Mailbox -Identity mailboxname -ApplyMandatoryProperties
category: exchange
Active Directory How to export / import Contacts
It is not possible to migrate contact objects with ADMT (3.1) To export contacts from active directory, you can simply use followin command ldifde -f contacts.ldf -d “ou=Contacts,dc=testlab,dc=corp” -r (“objectClass=contact”) -l objectClass,sn,givenName,displayName,proxyaddresses,importedFrom,targetAddress,mailNickname,name,mail This would export all contacts from the OU Contacts. If you want to export all contact objects, simply use following command: ldifde -f [...]
category: exchange
Exchange 2007: How to remove a disconnected Mailbox
Before you can remove the disconnected mailbox from Exchange 2007, you need to figure out the MailboxGuid and also the coresponding database: Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid Get-Mailbox -Identity mailboxname | FL To remove a disconnected mailbox from Exchange 2007 you can use following cmdlet: Remove-Mailbox -StoreMailboxIdentity d6dd0587-6a62-446a-a1ef-0b785dac1090 -Database [...]
category: exchange