Scott Fox
unread,Jan 23, 2015, 4:03:06 PM1/23/15You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
hey there, im trying to write this USMT program for my company here and i am finding when i process my Migtest.xml file its moving the files to the location chosen but also duplicating it and i cant understand why.
ive removed the Desktop move from miguser. and only kept the section below:
<!--Desktop Migration files into Old Desktop-->
<component type="Documents" context="UserandSystem">
<displayName _locID="tem5582.desktop">Desktop</displayName>
<paths>
<path type="File">%CSIDL_DESKTOP%</path>
</paths>
<role role="Settings">
<detection>
<conditions>
<condition>MigXmlHelper.DoesObjectExist("File","%CSIDL_DESKTOP%")</condition>
</conditions>
</detection>
<rules>
<include filter="MigXmlHelper.IgnoreIrrelevantLinks()">
<objectSet>
<pattern type="File">%CSIDL_DESKTOP%\* [*]</pattern>
</objectSet>
</include>
<locationModify script="MigXmlHelper.Move('%CSIDL_DESKTOP%\Old Desktop')">
<objectSet>
<pattern type="File">%CSIDL_DESKTOP%\* [*]</pattern>
</objectSet>
</locationModify>
<merge script="MigXmlHelper.SourcePriority()">
<objectSet>
<pattern type="File">%CSIDL_DESKTOP%\* [*]</pattern>
</objectSet>
</merge>
</rules>
</role>
</component>
ive even gone through and tried to exclude the desktop variable from backing up so it only runs in this command, but its still duplicating?
anyone run into this in the past?