Hi everybody
I just encountered an issue while trying to capture and restore custom folders / data with USMT 4.0 in combination of a SCCM2012 state migration point.
The capturing task works quite well, I suppose.
At least all the settings I did and wanted to capture got captured and restored again from WinXP into Win7.
Well, so far the success story ...
Since I need to capture more data (Outlook signatures in this first case), I read the documentation on how to do this and created a custom XML-File:
<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/testmigration">
<component type="Documents" context="UserAndSystem">
<displayName>Copy Files from XP Folder A to Win7 Folder B</displayName>
<role role="Data">
<rules>
<include>
<objectSet>
<script>MigXmlHelper.GenerateUserPatterns ("File","%USERPROFILE%\Application Data\Microsoft\Outlook\* [*]","TRUE")</script>
</objectSet>
</include>
<locationModify script="MigXmlHelper.Move ('%CSIDL_PPROFILE%\AppData\Local\Microsoft\')">
<objectSet>
<script>MigXmlHelper.GenerateDrivePatterns ("* [*]","Fixed")</script>
</objectSet>
</locationModify>
</rules>
</role>
</component>
</migration>
Quite simple job, basically. Get the files of the WinXP-Client and restore them back to the Win7-Client to a different location.
To my understanding, this should work. But actually, it doesn't
Consulting the loadstate-logfile, I unfortunately did not see any errors correlating with the "Copy Files from XP Folder A to Win7 Folder B"-Section.
Any help is appreciated
Cheers and thanks in advance
JV