Skip to the main content.
Shop Hardware
Our reason for being

At Fastrack Technology, our vision is to fundamentally change the way our customers perceive and consume datacentre, network and collaboration services.

 

We're here to help

Got any questions or concerns, or simply want to provide feedback to the team? Contact us today!

 

1 min read

Enabling USMT Migration using MDT 2010 LiteTouch

This functionality is really useful if you have a large number of machines to upgrade / refresh and you don’t want to manually backup and restore user data and settings. Whilst the functionality is quite straight forward to enable if you already have a working MDT environment, I’ve received a couple of questions about this lately, there are a few properties you’ll need to set.

In CustomSettings.ini, or your MDT databsae if you prefer, you’ll need to set the following.

LoadStateArgs=/lac /v:13
USMTMigFiles1=MigApp.xml
USMTMigFiles2=MigUser.xml
USMTConfigFile=Config.xml
UserDataLocation=AUTO

Also, without a bit more tweaking, MDT won’t backup or restore data and settings if you initiate the task sequence from within WinPE, you’ll need to kick it off from an operating system, and set the property DeploymentType to REFRESH. I usually create a little batch file, and drop it on a share somewhere.

@ECHO off
ECHO:
ECHO *********************************************
ECHO *** Fastrack Technology – OS Deployment ***
ECHO *** Windows 7 Enterprise ***
ECHO *********************************************
ECHO:
ECHO PLEASE DO NOT CLOSE THIS WINDOW
ECHO:
ECHO NOTE: It may take several minutes before the deployment commences
ECHO:
ECHO:

ECHO THIS PROCESS WILL ERASE YOUR HARD DISK AND INSTALL A NEW OPERATING SYSTEM, ARE YOU SURE YOU WISH TO PROCEED?
pause

ECHO Initiating Task Sequence….
cscript ServerShare$ScriptsLitetouch.vbs /DeploymentType:REFRESH

Something like that will do. That is really all there is to it!! MDT will now automatically figure out which version of USMT is available, and whether or not it can use USMT 4.0 hard-link capability (this is a really cool feature, more info here) and then backup and restore data and settings for all users as appropriate. If hard-link is available, this step will normally add no more than a few minutes to your build process.

USMT 4.0 Default Migration – Data and Setting Locations

I recently posted an entry on USMT Migration using LiteTouch, which would help you quickly enable a fairly comprehensive migration in as little as a...

Read More

Understanding Precedence in USMT 4.0

Now if you’re going around creating custom XML files for USMT to use, you bound to come across an issue of precedence at some point. for the most...

Read More
Migrating User Settings from Office 2003 to Office 2010 with App-V

Migrating User Settings from Office 2003 to Office 2010 with App-V

I was recently asked if I knew of any way to migrate user settings from a locally installed version of Office 2003, to an App-V delivered version of...

Read More