USMT 3 : Migrating Printers and Network drives
USMT version 3, no longer migrates printers in Windows XP by default. USMT 2.6 did do this type of migration. In order to migrate printer and network drives, you need to create a custom.xml file.
Here is an example of the information you need. Remember that your http line needs to contain the filename at the end, so in this case the file would be custom.xml
<?xml version="1.0" encoding="UTF-8"?>
<migration urlid=http://www.microsoft.com/migration/1.0/migxmlext/custom>
<!-- This component migrates the printers and network drives -->
<component type="System">
<displayName>Printers and Network Drives</displayName>
<role role="Settings">
<rules context="UserAndSystem">
<include>
<objectSet>
<pattern type="Registry">HKCU\Printers\* {*}</pattern>
<pattern type="Registry">HKCU\Network\* {*}</pattern>
</objectSet>
</include>
</rules>
</role>
</component>
</migration>
(make sure to change { to [, } to ] formatting issue)