diff --git a/windows/deployment/usmt/usmt-conflicts-and-precedence.md b/windows/deployment/usmt/usmt-conflicts-and-precedence.md index 48ebaa0719..1236299462 100644 --- a/windows/deployment/usmt/usmt-conflicts-and-precedence.md +++ b/windows/deployment/usmt/usmt-conflicts-and-precedence.md @@ -218,13 +218,48 @@ You have a custom .xml file that contains the following code: ``` -For this example, the following table describes the resulting behavior if you add the code in the first column to your custom .xml file. +For this example, the following information describes the resulting behavior if you add the code to your custom .xml file. -| If you specify the following code | Resulting behavior | -|-----|-----| -|
<merge script="MigXmlHelper.DestinationPriority()">
<objectSet>
<pattern type="File">c:\data* []</pattern>
</objectSet>
</merge>
| During ScanState, all the files will be added to the store. <merge script="MigXmlHelper.SourcePriority()">
<objectSet>
<pattern type="File">c:\data* []</pattern>
</objectSet>
</merge>
| During ScanState, all the files will be added to the store. <merge script="MigXmlHelper.SourcePriority()">
<objectSet>
<pattern type="File">c:\data\ [*]</pattern>
</objectSet>
</merge>
| During ScanState, all the files will be added to the store.