Monthly Archives: April 2013

Useful Exchange 2010 / 2013 Powershell commands

Test readiness of mailbox to be moved:
New-MoveRequest -Identity ‘user@domain’ -TargetDatabase “Mailbox Database” -WhatIf
Remove the -WhatIf to move the mailbox
Move all mailboxes:
Get-Mailbox -Database “Old Mailbox Database” | New-MoveRequest -TargetDatabase “New Mailbox Database”

Remove all move requests:
get-moverequest | remove-moverequest -confirm:$false

List open move requests:
Get-MoveRequest -TargetDatabase “Mailbox Database”
Get-MoveRequest –identity ‘user@domain’

Get statistics on move request in detail:
get-moverequest | get-moverequeststatistics | fl
 
Get statistics on move request in summary:
get-moverequest | get-moverequeststatistics

Get statistics for database:
Get-MailboxStatistics -database “Mailbox database”

Blogroll

  • Stephen Smith's Blog
    AI’s and Stolen Tr...: Introduction Facebook parent company Meta is in big trouble as a trial is revealing that Meta traine...
    Looking Ahead to 202...: Introduction 2025 is shaping up to be a year of contradictions. This article will look at a number o...
    City of Vancouver to...: Introduction The City of Vancouver recently started a committee to look at taking Bitcoin for paymen...
    Social Media Wars: Introduction There seems to be a lot of churn going on in the Social Media space these days: In this...
    iPhone 16 Pro Review: Introduction I received an early XMas present of a new iPhone 16 Pro. This is a review of this new p...