Hello,
I'm trying to use SCCM to upgrade clients from Windows 7 to Windows 10 and use USMT. There are two folders on the public desktop of the Windows 7 image I need to exclude in the MigUser.XML but I'm not sure how to string together the argument to exclude them.
The two folders are named "Office Apps" and "Resources". I thought this would work:
But when used in MigUser.xml is excluded everything. Please let me know how I can fix this!
I'm trying to use SCCM to upgrade clients from Windows 7 to Windows 10 and use USMT. There are two folders on the public desktop of the Windows 7 image I need to exclude in the MigUser.XML but I'm not sure how to string together the argument to exclude them.
The two folders are named "Office Apps" and "Resources". I thought this would work:
Code:
<exclude>
<objectSet>
<pattern type="File">C:\Users\*\desktop\Office Apps [*]</pattern>
<pattern type="File">C:\Users\*\desktop\Resources [*]</pattern>
</objectSet>
</exclude>
But when used in MigUser.xml is excluded everything. Please let me know how I can fix this!