Link to home
Start Free TrialLog in
Avatar of Albert Widjaja
Albert WidjajaFlag for Australia

asked on

Mailbox with error / corrupted emails left out?

Hi,

I have successfully migrated most of my mailboxes from one DB to another new Database, with the option to skip 10 corrupted emails, but now when I query the mailbox with the following powershell script:

it returns some of the username with 0 MB acapacity and several email count ?

What should I do with those mailboxes ?
SOLUTION
Avatar of S_K_S
S_K_S

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Albert Widjaja

ASKER

Oops here's the script:


Get-MailboxStatistics -Database ExcClus01\SG9\SG9MBX1 | Sort-Object -descending totalitemsize | Select DisplayName, @{expression={$_.totalitemsize.value.ToMB()};label=”Mailbox Size(MB)”}, itemcount | ft -autosize

Open in new window


So I guess those mailboxes were left out due to the corrupted email.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
well the mailbox is now appears in two storage groups, in the new SG the mailbox got proper size and item count while in the old SGthe mailbox got 0 MBytes and few emails only ?
Well i suspect that database movement is still is in progress....
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No the mailbox move has finished successfully without error.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hi SKS, the command Clean-MailboxDatabase is for Exchange Server 2010 SP2 ?
thanks !