|
Sembee -> RE: PowerShell help - mailbox migration (1.Jul.2008 8:40:53 AM)
|
There is no single command that will do it - but I would be surprised if there was. PowerShell is designed to take various commands and use them together. Therefore you will have to use something like (untested, from my notes, so will need some work to function fully) Get-MailboxStatistics -database server\storagegroup |where {$_.TotalItemSize -lt 250MB} | move-mailbox <etc etc> You will need to add the move mailbox commands that are required to move the mailboxes. Simon.
|
|
|
|