A few days ago encountered a wonderful thing, the company is doing Office365 Exchange online hybrid deployment. When a user migrates from a local Exchange server to a Office365, the user account disappears!! Yes, you did not read wrong, inexplicable disappeared. I did not disable or delete the user locally, but the user mailbox database was missing. Of course, this issue we have submitted case to the Microsoft Office365 team, specific reasons to be identified, I will be sent to the blog.
Today, we mainly share the process of retrieving this mailbox data.
1. Before dealing with this problem, I will first look at the "disconnected" mailbox on the local Exchange server and find that there is no mailbox for that user. Does this user's mailbox really "evaporate"!?
650) this.width=650; "title=" image "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" image "src=" http://s3.51cto.com/wyfs02/M01/6E/B6/wKiom1WDie6Q_ Si-aai0w-6ztpy120.jpg "" 644 "height=" 483 "/>
2. As a result of not forget, board the server to use the command to check
View disconnected mailboxes in the current mail server
Get-mailboxdatabase | Get-mailboxstatistics | where {$_. Disconnectreason-ne $null} | FT Displayname,database,disconnectreason-auto
650) this.width=650; "title=" clip_image001 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image001 "src=" http://s3.51cto.com/wyfs02/M02/6E/B6/ Wkiom1wdie6x1cc1aag7t1fgbiy159.jpg "" 644 "height=" 288 "/>
In the list and find the disconnected user we need, the results are not found. Tragedy ~ ~ ~
650) this.width=650; "title=" clip_image002 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image002 "src=" http://s3.51cto.com/wyfs02/M00/6E/B6/ Wkiom1wdie-brulmaaeyighljoo138.jpg "" 644 "height=" 252 "/>
3. Later, after reviewing foreign devil's data, it was found that the mailbox database data could be re-consolidated by clearing the mailbox database, similar to the "refresh" in the PC
Here to focus on the Exchange 2010 and Exchange 2013 commands are not the same, this is also a long time to find out, the dead AH ~ ~
Exchange 2010 runs in Eexchange PowerShell
Clean-mailboxdatabase "Database name"
650) this.width=650; "title=" clip_image003 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image003 "src=" http://s3.51cto.com/wyfs02/M02/6E/B3/ Wkiol1wdi6hb0k1baac-ctfpn8s288.jpg "" 574 "height=" 117 "/>
Exchange 2013 runs in Eexchange PowerShell
Get-mailboxstatistics-database "Database name" | ForEach {update-storemailboxstate-database $_. Database-identity $_. Mailboxguid-confirm: $false}
For more information, please refer to: http://blogs.technet.com/b/exchange/archive/2013/10/28/ Recovering-public-folder-information-in-exchange-2013-part-2.aspx
650) this.width=650; "title=" clip_image004 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image004 "src=" http://s3.51cto.com/wyfs02/M02/6E/B3/ Wkiol1wdi6kr5fmoaadmvhrx-uu533.jpg "" 761 "height=" 108 "/>
4. Find the disconnected mailbox user again through the second step of the command, the user appears!
650) this.width=650; "title=" clip_image005 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image005 "src=" Http://s3.51cto.com/wyfs02/M02/6E/B6/wKiom1WDifDwoJt_ Aako43agzns061.jpg "" 584 "height=" 430 "/>
5. I won't have to say it again.
Exchange2010 interface
650) this.width=650; "title=" clip_image006 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image006 "src=" http://s3.51cto.com/wyfs02/M00/6E/B6/ Wkiom1wdifgssbvmaahwisf-jkw363.jpg "" 644 "height=" 331 "/>
Exchange2013 interface
650) this.width=650; "title=" clip_image007 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; margin:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image007 "src=" http://s3.51cto.com/wyfs02/M01/6E/B6/ Wkiom1wdifhcjtn6aad0z95-t8y676.jpg "" 644 "height=" 291 "/>
650) this.width=650; "title=" clip_image008 "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" clip_image008 "src=" http://s3.51cto.com/wyfs02/M02/6E/B3/ Wkiol1wdi6sqldzhaahjdgnjy5s348.jpg "" 644 "height=" 398 "/>
Show hidden disconnected mailboxes