Some basic USMT 4.0 actions explained
The last few weeks a saw and got a lot of questions about capturing specific files and folders with USMT. These actions are actually quite basic and good documented on Technet, but still seem to raise a lot of questions. So I decided to devote a post to this. I will show some examples and will try to explain what it all means. Let’s start with a component that migrates all files in a specific folder. <component type=”Documents” context=”System”> <displayName>Component to migrate all files in a specific folder including subfolders</displayName> <role role=”Data”> <rules> <include> <objectSet> <pattern type=”File”>C:\SpecificFolder\* [*]</pattern> </objectSet> </include> </rules> </role> </component> Well, that’s a nice component but what does it all mean? Let’s go …