<?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>blog.powershell.no &#187; Migration</title>
	<atom:link href="http://blog.powershell.no/category/migration/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.powershell.no</link>
	<description>On Windows PowerShell and other admin-related topics</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.powershell.no' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/e22e511529c14fbc92cde5589d6231b4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>blog.powershell.no &#187; Migration</title>
		<link>http://blog.powershell.no</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.powershell.no/osd.xml" title="blog.powershell.no" />
	<atom:link rel='hub' href='http://blog.powershell.no/?pushpress=hub'/>
		<item>
		<title>Automate Active Directory Migration Tool using Windows PowerShell</title>
		<link>http://blog.powershell.no/2010/08/04/automate-active-directory-migration-tool-using-windows-powershell/</link>
		<comments>http://blog.powershell.no/2010/08/04/automate-active-directory-migration-tool-using-windows-powershell/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 12:27:48 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Active Directory management]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[ADMT]]></category>
		<category><![CDATA[ADMT 3.2]]></category>
		<category><![CDATA[ADMT PowerShell]]></category>
		<category><![CDATA[ADMT script]]></category>

		<guid isPermaLink="false">https://janegilring.wordpress.com/2010/08/04/automate-active-directory-migration-tool-using-windows-powershell/</guid>
		<description><![CDATA[Active Directory Migration Tool (ADMT) provides the ability to restructure Active Directory domain structures. It allows you to migrate users, groups and computers between domains, both intra-forest and inter-forest. Features includes password migration, SID migration and security translation among several others. ADMT was recently released in version 3.2, adding support for Windows Server 2008 R2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=582&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Active Directory Migration Tool (ADMT) provides the ability to restructure Active Directory domain structures. It allows you to migrate users, groups and computers between domains, both intra-forest and inter-forest. Features includes password migration, SID migration and security translation among several others.<br />
ADMT was recently <a href="http://blogs.technet.com/b/askds/archive/2010/06/19/admt-3-2-released.aspx" target="_blank">released</a> in version 3.2, adding support for Windows Server 2008 R2 and Managed Service Accounts. You can find the download <a href="http://www.microsoft.com/downloads/details.aspx?familyid=20C0DB45-DB16-4D10-99F2-539B7277CCDB&amp;displaylang=en" target="_blank">here</a>, and the ADMT migration guide <a href="http://www.microsoft.com/downloads/details.aspx?familyid=6D710919-1BA5-41CA-B2F3-C11BCB4857AF&amp;displaylang=en" target="_blank">here</a>.</p>
<p>ADMT provides three options on how to use it, where the first and maybe most used is the GUI:</p>
<p><a href="http://janegilring.files.wordpress.com/2010/08/image.png"><img class="wlDisabledImage" style="display:inline;border-width:0;margin:0;" title="image" src="http://janegilring.files.wordpress.com/2010/08/image_thumb.png?w=244&#038;h=227" border="0" alt="image" width="244" height="227" /></a></p>
<p>It`s wizard driven and pretty straightforward to use.<br />
The second option is the admt.exe command line utility:</p>
<p><a href="http://janegilring.files.wordpress.com/2010/08/image1.png"><img class="wlDisabledImage" style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2010/08/image_thumb1.png?w=383&#038;h=405" border="0" alt="image" width="383" height="405" /></a></p>
<p>In my opinion this is a pretty good example on how inconsistent various command line tools are compared to PowerShell. Although ADMT is a great tool, hopefully the next version will be rebuilt based on PowerShell.</p>
<p>The third option is scripting. There is a COM-object called ADMT.Migration, and there is a sample VB-script (templatescript.vbs) in the ADMT installation directory (by default C:\Windows\ADMT). This sample script is a good place to start to explore how the COM-object works.</p>
<p>Based on this I`ve written a sample PowerShell script, <a href="http://poshcode.org/2046">Invoke-ADMTUserMigration</a>, to migrate user accounts and passwords using Windows PowerShell. This script uses the “ADMTDomain” option, which means that all users from the source OU will be migrated to the target OU. To see other available options, see the ADMT documentation and the sample VBScript. Migrating other objects, like groups and computers, the same way should be pretty easy when comparing Invoke-ADMTUserMigration to templatescript.vbs.</p>
<p>Note that since ADMT is a 32-bit application the script must be run from an x86 instance of Windows PowerShell. It also requires elevated privileges (Run as Administrator). Trying to run it in an x64-bit PowerShell instance or without elevated privileges will result in the following error:<br />
<em>New-Object : Retrieving the COM class factory for component with CLSID {285029CC-5048-4D90-8B38-22D304F513DC} failed du<br />
e to the following error: 80040154.</em></p>
<p>Before trying to run the script I would recommend that you read the ADMT migration guide and ensures that migration works as expected by running a few test migrations from the GUI.</p>
<p>When this is done, I also would recommend to split the migration in batches as recommended in the migration guide. A maximum of 100 objects at a time might be appropriate. Before moving on to the next batch, check the migration logs (by default in C:\Windows\ADMT\Logs) to see that everything went OK before proceeding.</p>
<p>To take this a step further, I`ve created a function, <a href="http://poshcode.org/2048">Migrate-ADMTUser</a>, that migrates a single user object. This would allow you to easily do things like this:<br />
<strong>Get-ADUser -Filter {Company -like &#8220;Oslo&#8221;} | Migrate-ADMTUser</strong></p>
<p>This example combines the Active Directory module for PowerShell with ADMT, allowing us to more fine grained control on what objects to migrate.<br />
Note that both the sample script and sample function I`ve created is meant as a guidance on how to use PowerShell to automate ADMT. The optimal way as I see it would be creating an ADMT PowerShell module with functions for migrate other objects like computers and groups in addition to users and passwords.</p>
<p><span style="font-size:x-small;"><strong>Resources</strong></span></p>
<p><a href="http://blogs.technet.com/b/askds/archive/2010/07/09/admt-3-2-common-installation-issues.aspx" target="_blank">ADMT 3.2: Common Installation Issues</a></p>
<p><a href="http://technet.microsoft.com/en-us/library/cc974332(WS.10).aspx" target="_blank">ADMT Guide: Migrating and Restructuring Active Directory Domains (TechNet-version)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=582&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2010/08/04/automate-active-directory-migration-tool-using-windows-powershell/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2010/08/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2010/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Server 2008 R2 Migration Tools</title>
		<link>http://blog.powershell.no/2009/04/20/windows-server-2008-r2-migration-tools/</link>
		<comments>http://blog.powershell.no/2009/04/20/windows-server-2008-r2-migration-tools/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:05:00 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Migration]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://janegilring.wordpress.com/2009/04/20/windows-server-2008-r2-migration-tools/</guid>
		<description><![CDATA[The Windows Server 2008 R2 Migration Tools are a set of tools available to simplify migration of various roles, features and other server data to a new server running Windows Server 2008 R2. As described on the Migration Tools TechNet documentation, the following can be migrated using these tools: Roles Active Directory Domain Services and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=210&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Windows Server 2008 R2 Migration Tools are a set of tools available to simplify migration of various roles, features and other server data to a new server running Windows Server 2008 R2.</p>
<p>As described on the <a href="http://technet.microsoft.com/en-us/library/dd365353.aspx">Migration Tools TechNet documentation</a>, the following can be migrated using these tools:</p>
<p><strong>Roles</strong></p>
<p>Active Directory Domain Services and DNS<br />
DHCP Server<br />
File Services<br />
Print Services</p>
<p>&nbsp;</p>
<p><strong>Features</strong></p>
<p>BranchCache</p>
<p>&nbsp;</p>
<p><strong>Settings and Data</strong></p>
<p>Data and Shares<br />
IP Configuration<br />
Local Users and Groups</p>
<p>&nbsp;</p>
<p><strong><span style="font-size:medium;">Installation</span></strong></p>
<p>Start by installing the Windows Server Migration Tools feature from the Add feature wizard in Server Manager on the destination server running Windows Server 2008 R2:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image24.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb24.png?w=226&#038;h=244" border="0" alt="image" width="226" height="244" /></a></p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image25.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb25.png?w=244&#038;h=185" border="0" alt="image" width="244" height="185" /></a></p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image26.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb26.png?w=244&#038;h=185" border="0" alt="image" width="244" height="185" /></a></p>
<p>You can find the new feature on the Start-menu in Administrative tools:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image27.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb27.png?w=447&#038;h=47" border="0" alt="image" width="447" height="47" /></a></p>
<p>After the “Windows Server Migration Tools” PowerShell prompt are opened, go to C:\Windows\System32\ServerMigrationTools.<br />
Type SmigDeploy.exe /? to list the description and usage of this command.</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image28.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb28.png?w=555&#038;h=484" border="0" alt="image" width="555" height="484" /></a></p>
<p>&nbsp;</p>
<p><strong><span style="font-size:medium;"> </span></strong></p>
<p><strong><span style="font-size:medium;">Example usage</span></strong></p>
<p>In this example we`ll migrate a DHCP Server running on a Windows Server 2003 machine. To create a deployment package for Windows Server 2003 32-bit, execute the following command:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image29.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb29.png?w=579&#038;h=167" border="0" alt="image" width="579" height="167" /></a></p>
<p>When the package folder are successfully create, copy the folder to the source DHCP Server:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image30.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb30.png?w=244&#038;h=234" border="0" alt="image" width="244" height="234" /></a></p>
<p>The only requirement on the source Windows Server 2003 server are Windows PowerShell (and thereby .NET Framework 2.0).</p>
<p>Start SmigDeploy.exe from the SMT_ws03_x86 folder to fire up Windows PowerShell with the Windows Server Migration Tools snapin.</p>
<p>Available cmdlets for this snapin:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image31.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb31.png?w=565&#038;h=484" border="0" alt="image" width="565" height="484" /></a></p>
<p>Execute the cmdlet Get-SmigServerFeature to get the set of all Windows features that can be migrated from the local server:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image32.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb32.png?w=350&#038;h=30" border="0" alt="image" width="350" height="30" /></a></p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image33.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb33.png?w=244&#038;h=27" border="0" alt="image" width="244" height="27" /></a><br />
The cmdlet returns the DHCP Server as a feature available for migration:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image34.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb34.png?w=612&#038;h=99" border="0" alt="image" width="612" height="99" /></a></p>
<p>Here we got the DHCP Leases on the source DHCP Server, which are to be migrated to the Windows Server 2008 R2 server:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image35.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb35.png?w=644&#038;h=155" border="0" alt="image" width="644" height="155" /></a></p>
<p>To export the DHCP Server configuration and database, run the Export-SmigServerSetting cmdlet with the following parameters (you will be prompted for a password to protect the exported file):</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image36.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb36.png?w=440&#038;h=93" border="0" alt="image" width="440" height="93" /></a></p>
<p>The export was successful, and we can see the exported *.mig-file:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image37.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb37.png?w=244&#038;h=52" border="0" alt="image" width="244" height="52" /></a></p>
<p>Copy the *.mig file to the target DHCP Server.<br />
To import the DHCP Server configuration and database, run the Import-SmigServerSetting cmdlet with the following parameters (you will be prompted for the password  for the exported file):</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image38.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb38.png?w=492&#038;h=68" border="0" alt="image" width="492" height="68" /></a></p>
<p>The DHCP Server feature was not installed on the Windows Server 2008 R2 server, but the Import-SmigServerSetting takes care of this automatically:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image39.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb39.png?w=497&#038;h=71" border="0" alt="image" width="497" height="71" /></a></p>
<p>The import was successful:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image40.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb40.png?w=558&#038;h=133" border="0" alt="image" width="558" height="133" /></a></p>
<p>After starting the DHCP Server service we can open the DHCP Server management console and verify that the migration was successful:</p>
<p><a href="http://janegilring.files.wordpress.com/2009/04/image41.png"><img style="display:inline;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2009/04/image-thumb41.png?w=644&#038;h=159" border="0" alt="image" width="644" height="159" /></a></p>
<p>This concludes this post regarding the new Migration Tools, and I must say I really like this new feature, especially the fact that it`s leveraging Windows PowerShell. I would recommend you to play around with this in a lab environment to get to know it`s usage.</p>
<p><em>Update 25.08.2009: As stated in the documentation on Technet, the DHCP-service on the source server must be stopped (Stop-Service DHCPserver) prior to the export. Thanks to Max for pointing this out.<br />
Update 15.01.2011: Note that the destination DHCP-server must be <a href="http://technet.microsoft.com/en-us/library/dd183580(WS.10).aspx">authorized</a>. Thanks to Blazej for pointing this out.<br />
</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=210&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2009/04/20/windows-server-2008-r2-migration-tools/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb24.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb25.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb26.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb27.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb28.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb29.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb30.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb31.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb32.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb33.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb34.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb35.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb36.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb37.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb38.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb39.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb40.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2009/04/image-thumb41.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange ActiveSync relationships and server migrations</title>
		<link>http://blog.powershell.no/2009/04/17/exchange-activesync-relationships-and-server-migrations/</link>
		<comments>http://blog.powershell.no/2009/04/17/exchange-activesync-relationships-and-server-migrations/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 23:16:12 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange ActiveSync]]></category>
		<category><![CDATA[Exchange Server 2007]]></category>
		<category><![CDATA[Migration]]></category>

		<guid isPermaLink="false">http://janegilring.wordpress.com/2009/04/17/exchange-activesync-relationships-and-server-migrations/</guid>
		<description><![CDATA[Ever wondered what happens with ActiveSync relationships on mobile devices when you replace the Exchange server published to the internet? 1. If you move a mailbox from Exchange 2003 to Exchange 2003 or to Exchange 2007 RTM, you have to recreate the partnership manually. 2. If you move mailbox to Exchange 2007 SP1, there is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=211&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever wondered what happens with ActiveSync relationships on mobile devices when you replace the Exchange server published to the internet?</p>
<p>1. If you move a mailbox from Exchange 2003 to Exchange 2003 or to Exchange 2007 RTM, you have to recreate the partnership manually.</p>
<p>2. If you move mailbox to Exchange 2007 SP1, there is no need to re-create the partnership manually.</p>
<p>3. Please note the certificate should be the same. Otherwise, you will encounter issues with certificate in Exchange ActiveSync. </p>
<p>For more information on how to re-create the partnership manually, see <a href="http://msexchangeteam.com/archive/2008/01/30/447971.aspx">this article</a> on the Exchange Team`s blog.</p>
<p>In previous versions of Microsoft Exchange Server, if you moved your mailbox to an upgraded server (such as Exchange Server 2003 to Exchange Server 2007 RTM) re-creating the partnership was required. However, if you move your mailbox to an Exchange Server 2007 with Service Pack 1, the new Sync State Upgrade feature is built into Move Mailbox and will allow you to continue synchronizing your device without resetting your partnership. </p>
<p>For more information on the Move-Mailbox cmdlet, see <a href="http://technet.microsoft.com/en-us/library/aa997599.aspx">this article</a> on TechNet.</p>
<p>In Exchange 2007 Service Pack 1 (SP1), if you move a mailbox to which a mobile device is synchronized using Exchange ActiveSync, the sync state of the mailbox is updated automatically during the move. You do not need to perform any additional steps, and the user does not need to again sync the device after a mailbox move. </p>
<p>Although you don&#8217;t move mailboxes, if you add a CAS server and users use the CAS server to maintain their Exchange ActiveSync access, you need to note the following: </p>
<p>In order for your users to continue to synchronize their mobile devices via Exchange ActiveSync with their mailboxes hosted on Exchange 2003 mailbox servers, you will need to ensure that Integrated Windows Authentication is enabled on all of the Exchange ActiveSync virtual directories (Microsoft-Server-ActiveSync) on Exchange 2003 mailbox servers. </p>
<p>For more information on how Exchange 2003 mailboxes are maintained after the Exchange 2007 CAS role are introduced in the environment, please see <a href="http://msexchangeteam.com/archive/2007/01/05/432079.aspx">this article</a> on the Exchange Team`s blog.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=211&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2009/04/17/exchange-activesync-relationships-and-server-migrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>
	</item>
	</channel>
</rss>
