Boîte aux lettres d’arbitrage
4 décembre 2019Boîte aux lettres d’arbitrage
Notez que dans Exchange 2010, il existe 3 boîtes aux lettres d’arbitrage. Ils s’appellent :
FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042
SystemMailbox {1f05a927-f7a0-4bff-ba0e-7400efadb1d7}
SystemMailbox {e0dc1c29-89c3-4034-b678-e6c29d823ed9}
Dans Exchange 2013, il existe 5 boîtes aux lettres d’arbitrage. Ils s’appellent :
SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}
SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}
SystemMailbox{1f05a927*}
Migration.8f3e7716-2011-43e4-96b1-aba62d229136}
FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042}
Dans Exchange Exchange 2016, il existe 7 boîtes aux lettres d’arbitrage. Ils s’appellent :
SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}
SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}
SystemMailbox{1f05a927*}
Migration.8f3e7716-2011-43e4-96b1-aba62d229136}
FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042}
SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}
SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}
Nous allons utiliser la commande suivante pour les lister :
1 | Get-Mailbox -Arbitration | Format-Table Name, DisplayName |
Recréer une boîte aux lettres d’arbitrage
Nous allons mettre le CD d’installation d’Exchange (la même version installé)
Boîte aux lettres Fédération Microsoft Exchange
Si la boîte aux lettres est manquante, exécutez la commande suivante à partir d’une fenêtre d’invite de commandes Windows :
1 2 3 | E:\Setup.exe /IAcceptExchangeServerLicenseTerms /PrepareAD Enable-Mailbox -Identity "FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042" -Arbitration |
Boîte aux lettres Migration Microsoft Exchange
Si la boîte aux lettres est manquante, exécutez la commande suivante à partir d’une fenêtre d’invite de commandes Windows :
1 2 3 4 5 | E:\Setup.exe /IAcceptExchangeServerLicenseTerms /PrepareAD Enable-Mailbox -Identity "Migration.8f3e7716-2011-43e4-96b1-aba62d229136" -Arbitration Set-Mailbox -Identity "Migration.8f3e7716-2011-43e4-96b1-aba62d229136" -Arbitration -Management $true -Force |
Boîte aux lettres Assistant Approbation Microsoft Exchange
Si la boîte aux lettres est manquante, exécutez la commande suivante à partir d’une fenêtre d’invite de commandes Windows :
1 2 3 | E:\Setup.exe /IAcceptExchangeServerLicenseTerms /PrepareAD Get-User -ResultSize Unlimited | where {$_.Name -like "SystemMailbox{1f05a927*"} | Enable-Mailbox -Arbitration |
Boîte aux lettres d’organisation Microsoft Exchange pour les carnets d’adresses en mode hors connexion
Si la boîte aux lettres est manquante, exécutez la commande suivante à partir d’une fenêtre d’invite de commandes Windows :
1 2 3 | E:\Setup.exe /IAcceptExchangeServerLicenseTerms /PrepareAD Enable-Mailbox -Identity "SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}" -Arbitration |
Boîte aux lettres système Découverte Microsoft Exchange
Si la boîte aux lettres est manquante, exécutez la commande suivante à partir d’une fenêtre d’invite de commandes Windows :
1 2 3 | E:\Setup.exe /IAcceptExchangeServerLicenseTerms /PrepareAD Enable-Mailbox -Identity "SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}" -Arbitration |
Comment savoir si cela a fonctionné ?
1 | Get-Mailbox -Arbitration | Format-Table Name, DisplayName |
Comment déplacer des boîtes aux lettres d’arbitrage
1 | Get-Mailbox -Arbitration -Database “Mailbox Database SOURCE” | New-MoveRequest -TargetDatabase “Mailbox Database DESTINATION” |
Suppression d’une base de données avec boîtes aux lettres d’arbitrage
Lors de la suppression d’une base données, si vous avez le message suivant :
1 | Error: This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, or arbitration mailboxes. To get a list of all mailboxes in this database, run the command Get-Mailbox -Database . To get a list of all mailbox plans in this database, run the command Get-MailboxPlan. To get a list of archive mailboxes in this database, run the command Get-Mailbox -Database -Archive. To get a list of all arbitration mailboxes in this database, run the command Get-Mailbox -Database -Arbitration. To disable a non-arbitration mailbox so that you can delete the mailbox database, run the command Disable-Mailbox . To disable an archive mailbox so you can delete the mailbox database, run the command Disable-Mailbox -Archive. Arbitration mailboxes should be moved to another server; to do this, run the command New-MoveRequest . If this is the last server in the organization, run the command Disable-Mailbox -Arbitration -DisableLastArbitrationMailboxAllowed to disable the arbitration mailbox. Mailbox plans should be moved to another server; to do this, run the command Set-MailboxPlan -Database |
Ça voudra dire que les boîtes aux lettres d’arbitrage sont encore sur cette base de données.
Nous allons déplacer les boîtes aux lettres d’arbitrage vers une autre base de données, comme vue précédemment avec la commande :
1 | Get-Mailbox -Arbitration -Database “Mailbox Database SOURCE” | New-MoveRequest -TargetDatabase “Mailbox Database DESTINATION” |
Views: 7524