<USMT?

G

Guest

Hello All,

I'm using BDD 2007 to refresh my workstations. And was hoping someone could
tell me how to configure USMT to only migrate documents and files that are
stored on the users D: partition with the exception of MP3 files?

Any help with this would be GREATLY appreciated.

Thanks
 
G

Guest

Hi Looked at the USMT help there is a section about saiving personal data.

To migrate a specific folder
To migrate a folder from a specific drive
Including subfolders
The following .xml file migrates all files and subfolders from
C:\EngineeringDrafts to the destination computer.

<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/test">
<component type="Documents" context="System">
<displayName>Component to migrate all Engineering Drafts Documents
including subfolders</displayName>
<role role="Data">
<rules>
<include>
<objectSet>
<pattern type="File">C:\EngineeringDrafts\* [*]</pattern>
</objectSet>
</include>
</rules>
</role>
</component>
</migration>

==============

To migrate a folder from any location
The following .xml file migrates all files and subfolders of the
EngineeringDrafts folder from any drive on the computer. If multiple folders
exist with the same name all such files will get migrated.

<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/test">
<component type="Documents" context="System">
<displayName>Component to migrate all Engineering Drafts Documents folder
on any drive on the computer </displayName>
<role role="Data">
<rules>
<include>
<objectSet>
<script>MigXmlHelper.GenerateDrivePatterns ("\EngineeringDrafts\*
[*] ", "Fixed")</script>
<script>MigXmlHelper.GenerateDrivePatterns ("*\EngineeringDrafts\*
[*] ", "Fixed")</script>
</objectSet>
</include>
</rules>
</role>
</component>
</migration>
The following .xml file migrates all files and subfolders of the
EngineeringDrafts folder from where ever it exists on the C: drive. If
multiple folders exist with the same name all such folders will get migrated

<migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/test">
<component type="Documents" context="System">
<displayName>Component to migrate all Engineering Drafts Documents
EngineeringDrafts folder from where ever it exists on the C: drive
</displayName>
<role role="Data">
<rules>
<include>
<objectSet>
<pattern type="File"> C:\*\EngineeringDrafts\* [*]</pattern>
<pattern type="File"> C:\EngineeringDrafts\* [*]</pattern>
</objectSet>
</include>
</rules>
</role>
</component>
</migration>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top