<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>msunified.net &#187; Disconnected mailbox</title>
	<atom:link href="http://msunified.net/tag/disconnected-mailbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://msunified.net</link>
	<description>Technical blog about Exchange, OCS and Lync by Ståle Hansen</description>
	<lastBuildDate>Sun, 03 Jun 2012 18:42:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='msunified.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/87139ddc4ba9c9960cf07f9364dfc9f4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>msunified.net &#187; Disconnected mailbox</title>
		<link>http://msunified.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://msunified.net/osd.xml" title="msunified.net" />
	<atom:link rel='hub' href='http://msunified.net/?pushpress=hub'/>
		<item>
		<title>Deleted Mailbox not appearing in Disconnected mailbox in Exchange 2007</title>
		<link>http://msunified.net/2009/05/13/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/</link>
		<comments>http://msunified.net/2009/05/13/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/#comments</comments>
		<pubDate>Wed, 13 May 2009 21:30:25 +0000</pubDate>
		<dc:creator>Ståle Hansen</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Clean-MailboxDatabase]]></category>
		<category><![CDATA[Disconnected mailbox]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://msunified.net/?p=303</guid>
		<description><![CDATA[Deleted mailboxes will appear in disconnected mailbox list, but it will not reflect immediately. You have to wait for online maintenance to run and complete. If you accidentally delete mailbox and if you wanted to reconnect it back then you may not be able to find it Disconnected Mailbox. You have to  run Clean-MailboxDatabase to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msunified.net&#038;blog=7420011&#038;post=303&#038;subd=stalehansen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-303" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmsunified.net%2F2009%2F05%2F13%2Fdeleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2Fpv8hB-4T%26tweetmeme_source%3D%E2%80%9Dstalehansen%E2%80%9D"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmsunified.net%2F2009%2F05%2F13%2Fdeleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007%2F" height="61" width="51" /></a>
</div>Deleted mailboxes will appear in disconnected mailbox list, but it will not reflect immediately. You have to wait for online maintenance to run and complete.</p>
<p>If you accidentally delete mailbox and if you wanted to reconnect it back then you may not be able to find it Disconnected Mailbox. You have to  run Clean-MailboxDatabase to get the deleted mailbox. Also if you want to disconnect the mailbox to re-add it to an other user or the same user do the following:</p>
<ul>
<li>Disable the mailbox in EMC</li>
<li>When you disable a mailbox the user object stays in AD and the mailbox is marked for deletion.</li>
<li>The disconnected mailbox should appear in the disconnected mailbox view</li>
<li>If it is not appearing in the disconnected mailbox view run one of the following commands from powershell</li>
</ul>
<p>Clean-MailboxDatabase \servername\SGName\Store<br />
Cleaning Database of Individual Store</p>
<p>Get-Mailboxdatabase | Clean-MailboxDatabase<br />
Cleans all the database in the Organization</p>
<p>Get-Mailboxdatabase | Where{ $_.Server –eq “&lt;servername&gt;”}| clean-MailboxDatabase<br />
Cleans all the database in the specific store</p>
<p>Get-Mailboxdaatabase | Where{ $_.Name –eq “&lt;DatabaseName&gt;”}| clean-MailboxDatabase<br />
Cleans all the Database which matches the specific name given in Databasename</p>
<ul>
<li>After the command completes, check the event viewer for the following  event ID&#8217;s
<ul>
<li>Event ID 9531 &#8211; the clean mailboxdatabase process has begun</li>
<li>Event ID 9533 &#8211; a user does not exist in the directory or is not enabled for Exchange mail. This mailbox will be removed from mailbox store  in after the retention time has passed</li>
<li>Event ID 9535 &#8211; the process completes and lists that the mailbox was retained in the store</li>
</ul>
</li>
<li>Finally you should see it in the disconnected mailbox view and you can connect it to the same AD user or an other AD user.</li>
</ul>
<p>This blog was based on smtpport25&#8242;s blog, <a href="http://smtpport25.wordpress.com/2009/04/22/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/" target="_blank">http://smtpport25.wordpress.com/2009/04/22/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/</a></p>
<p><a href="http://smtpport25.wordpress.com/2009/04/22/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/" target="_blank"><br />
</a>If you need to restore the mailbox because it is not retained in the mailbox store, see these great sites for restore guide using Recovery Storage Groups<br />
<a href="http://www.petri.co.il/using_rsg_in_exchange_2007.html" target="_blank">http://www.petri.co.il/using_rsg_in_exchange_2007.html<br />
</a><a href="http://www.msexchange.org/tutorials/Working-Recovery-Storage-Groups-Exchange-2007.html">http://www.msexchange.org/tutorials/Working-Recovery-Storage-Groups-Exchange-2007.html</a></p>
<br />Posted in Exchange 2007 Tagged: Clean-MailboxDatabase, Disconnected mailbox, Exchange, Exchange 2007, PowerShell <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/stalehansen.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/stalehansen.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/stalehansen.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msunified.net&#038;blog=7420011&#038;post=303&#038;subd=stalehansen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msunified.net/2009/05/13/deleted-mailbox-not-appearing-in-disconnected-mailbox-in-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961ad6f4a2b1289352341cb9964f2f36?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Ståle Hansen</media:title>
		</media:content>
	</item>
	</channel>
</rss>
