<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Error on moving mailbox to Exchange 2010</title>
	<atom:link href="http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/</link>
	<description>blogging about...... Microsoft, Cloud Computing and all other things I find interesting</description>
	<lastBuildDate>Wed, 04 Jan 2012 18:16:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bob</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-916</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 09 Nov 2011 20:45:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-916</guid>
		<description>Thanks for the tip, worked perfectly and I have many mailboxes to move</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, worked perfectly and I have many mailboxes to move</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DEPOLO</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-912</link>
		<dc:creator>DEPOLO</dc:creator>
		<pubDate>Sat, 08 Oct 2011 12:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-912</guid>
		<description>It work like a charm!
Thanks.</description>
		<content:encoded><![CDATA[<p>It work like a charm!<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crashzero</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-879</link>
		<dc:creator>crashzero</dc:creator>
		<pubDate>Fri, 12 Aug 2011 23:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-879</guid>
		<description>Awesome worked !!!</description>
		<content:encoded><![CDATA[<p>Awesome worked !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deKay</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-876</link>
		<dc:creator>deKay</dc:creator>
		<pubDate>Wed, 10 Aug 2011 12:11:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-876</guid>
		<description>Thanks! Saved me a headache this afternoon.</description>
		<content:encoded><![CDATA[<p>Thanks! Saved me a headache this afternoon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unable to move 2003 mailboxes to 2010 Exchange server &#124; xombe</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-784</link>
		<dc:creator>Unable to move 2003 mailboxes to 2010 Exchange server &#124; xombe</dc:creator>
		<pubDate>Wed, 16 Mar 2011 19:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-784</guid>
		<description>[...] This worked!  Here is a link to the page that got me here: http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/ [...]</description>
		<content:encoded><![CDATA[<p>[...] This worked!  Here is a link to the page that got me here: <a href="http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/" rel="nofollow">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mvalk</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-782</link>
		<dc:creator>mvalk</dc:creator>
		<pubDate>Fri, 04 Mar 2011 13:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-782</guid>
		<description>Hi Raveesh.... 

Powershell is the tool
1. download the Quest Powershell commands @ http://www.quest.com/powershell/activeroles-server.aspx
2. open them (make sure to execute them as a domain admin or else you can list things but not write things to AD)
3. If you execute the following command you will get a list of all users and you can see if this checkbox is set (verify it for some user), True = set.

Get-QADUser -SizeLimit 0 &#124; Select-Object Name,@{n=&#039;IncludeInheritablePermissions&#039;;e={!$_.DirectoryEntry.PSBase.ObjectSecurity.AreAccessRulesProtected}}

4. You can now set if for every user with the command:

Get-QADUser -SizeLimit 0 &#124; Set-QADObjectSecurity -UnLockInheritance

You can test it by supplying one user, and see if it works: Get-QADUser username -SizeLimit 0 &#124; Set-QADObjectSecurity -LockInheritance

&lt;strong&gt;Use it @ your own risk. I advise you to test it first in a test domain or test environment&lt;/strong&gt;.
More on the set-qadobjectsecurity command: http://wiki.powergui.org/index.php/Set-QADObjectSecurity</description>
		<content:encoded><![CDATA[<p>Hi Raveesh&#8230;. </p>
<p>Powershell is the tool<br />
1. download the Quest Powershell commands @ <a href="http://www.quest.com/powershell/activeroles-server.aspx" rel="nofollow">http://www.quest.com/powershell/activeroles-server.aspx</a><br />
2. open them (make sure to execute them as a domain admin or else you can list things but not write things to AD)<br />
3. If you execute the following command you will get a list of all users and you can see if this checkbox is set (verify it for some user), True = set.</p>
<p>Get-QADUser -SizeLimit 0 | Select-Object Name,@{n=&#8217;IncludeInheritablePermissions&#8217;;e={!$_.DirectoryEntry.PSBase.ObjectSecurity.AreAccessRulesProtected}}</p>
<p>4. You can now set if for every user with the command:</p>
<p>Get-QADUser -SizeLimit 0 | Set-QADObjectSecurity -UnLockInheritance</p>
<p>You can test it by supplying one user, and see if it works: Get-QADUser username -SizeLimit 0 | Set-QADObjectSecurity -LockInheritance</p>
<p><strong>Use it @ your own risk. I advise you to test it first in a test domain or test environment</strong>.<br />
More on the set-qadobjectsecurity command: <a href="http://wiki.powergui.org/index.php/Set-QADObjectSecurity" rel="nofollow">http://wiki.powergui.org/index.php/Set-QADObjectSecurity</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raveesh</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-780</link>
		<dc:creator>Raveesh</dc:creator>
		<pubDate>Thu, 03 Mar 2011 15:38:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-780</guid>
		<description>Thanks for posting this, This has really helped me to move the mailboxes from exchange 2003 to exchange 2010.

In general I have around 500 users and doing this manually for each users is not possible, is there any way to get this done for all the users with different organizational unit.

I know it too late posting here, but hoping that you may got the solution and reading the comments.

Thanks,</description>
		<content:encoded><![CDATA[<p>Thanks for posting this, This has really helped me to move the mailboxes from exchange 2003 to exchange 2010.</p>
<p>In general I have around 500 users and doing this manually for each users is not possible, is there any way to get this done for all the users with different organizational unit.</p>
<p>I know it too late posting here, but hoping that you may got the solution and reading the comments.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aww</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-741</link>
		<dc:creator>aww</dc:creator>
		<pubDate>Mon, 06 Dec 2010 20:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-741</guid>
		<description>WORKED LIKE A CHARM.  NEED TO GET THIS MOVED UP TO THE TOP OF THE LIST IN GOOGLE!!!!  THANKS A LOT!!!!!</description>
		<content:encoded><![CDATA[<p>WORKED LIKE A CHARM.  NEED TO GET THIS MOVED UP TO THE TOP OF THE LIST IN GOOGLE!!!!  THANKS A LOT!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahq</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-632</link>
		<dc:creator>mahq</dc:creator>
		<pubDate>Sat, 28 Aug 2010 11:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-632</guid>
		<description>Thank you!
perfect!</description>
		<content:encoded><![CDATA[<p>Thank you!<br />
perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 51b3</title>
		<link>http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/comment-page-1/#comment-606</link>
		<dc:creator>51b3</dc:creator>
		<pubDate>Mon, 26 Jul 2010 22:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.marcvalk.net/2009/11/error-on-moving-mailbox-to-exchange-2010/#comment-606</guid>
		<description>cheers, worked a charm</description>
		<content:encoded><![CDATA[<p>cheers, worked a charm</p>
]]></content:encoded>
	</item>
</channel>
</rss>

