I have a hardlink USMT task sequence running successfully with my OSD from SCCM. We have a couple dozen AutoCAD users and I would like to add a custom XML to migrate their custom settings from C:\documents and settings\username\autodesk\* to C:\user\username\app data\local
My custom xml causes the restore task to fail:
<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/custom">
<component type="System" context="User">
<displayName _locID="miguser.Autodesk">Autodesk</displayName>
<role role="Settings">
<detects>
<detect>
<condition>MigXmlHelper.DoesObjectExist("File","%CSIDL_APPDATA%\Autodesk")</condition>
</detect>
</detects>
<rules>
<include filter="MigXmlHelper.IgnoreIrrelevantLinks()">
<objectSet>
<pattern type="File">%CSIDL_APPDATA%\Autodesk\* </pattern>
</objectSet>
</include>
<locationModify script="MigXmlHelper.RelativeMove('%CSIDL_APPDATA%','%CSIDL_LOCAL_APPDATA%')">
<objectSet>
<pattern type="File">%CSIDL_APPDATA%\Autodesk\* [*]</pattern>
</objectSet>
</locationModify>
</rules>
</role>
</component>
</migration>
Any feedback would be appreciated.