programmazione:migrazione_mailbox_via_powershell
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
programmazione:migrazione_mailbox_via_powershell [ 4/01/2023 06:41] – lrosa | programmazione:migrazione_mailbox_via_powershell [20/05/2023 05:44] (current) – [Iniziare la migrazione] lrosa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Migrazione di mailbox exchange via PowerShell ====== | ||
+ | |||
+ | Comandi che possono tornare utili. | ||
+ | |||
+ | =====Vedere tutta la foresta===== | ||
+ | <code powershell> | ||
+ | |||
+ | =====Iniziare la migrazione===== | ||
+ | <code powershell> | ||
+ | New-MoveRequest -Identity ' | ||
+ | |||
+ | Per copiare i dati fino al 95% e tenere il target in sync aggiungere '' | ||
+ | |||
+ | =====Controllare le migrazioni===== | ||
+ | <code powershell> | ||
+ | Get-MoveRequest -movestatus completed | remove-moverequest -Confirm: | ||
+ | Get-MoveRequest " | ||
+ | Get-MoveRequest -Identity | ||
+ | Resume-MoveRequest -Identity ' | ||
+ | </ | ||
+ | |||
+ | =====Cancellare la migrazione===== | ||
+ | <code powershell> | ||
+ | |||
+ | =====Chi è rimasto su un database? | ||
+ | <code powershell> | ||
+ | |||
+ | =====Dettagli delle mailbox===== | ||
+ | <code powershell> | ||
+ | Get-Mailbox -ResultSize Unlimited | Select-Object Name, | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||