migration

Exchange MoveRequest – REALLY FAST, ignore „stalled due to disk latency“

If you want to ignore Exchange stalling on your moverequest slow source/destination servers: Get-MailboxDatabase „ex2013-db01“ | Get-Mailbox | select -first 5 | New-MoveRequest -TargetDatabase ex2016-db01 -BatchName gna -Priority Highest Monitor with: get-moverequest | get-moverequeststatistics When they’re all Completed, cleanup get-moverequest | remove-moverequest Then repeat from step 1.  

Exchange MoveRequest – REALLY FAST, ignore „stalled due to disk latency“ Read More »

Exchange 2010: Alle Mailboxen einer Mailboxdatenbank in einzelne PST Dateien exportieren und importieren

Beispiel 1: Exportiere alle Mailboxen aller Postfachdatenbanken nach C:\export2 $Export = Get-Mailbox $Export|%{$_|New-MailboxExportRequest -FilePath „\\localhost\C$\export2\$($_.alias).pst“} Beispiel 2: Importiere alle Mailboxen aller Postfachdatenbanken von C:\import2 $Import = Get-Mailbox $Import|%{$_|New-MailboxImportRequest -FilePath „\\localhost\C$\export2\$($_.alias).pst“}

Exchange 2010: Alle Mailboxen einer Mailboxdatenbank in einzelne PST Dateien exportieren und importieren Read More »

Nach oben scrollen