• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

USMT\Profile Migration

tyanni

Senior member
We (actually, I) are in the process of planning a desktop replacement project in which 70 plus desktops will be replaced with new ones. I'd like to script the profile migration. Anyone here have experience with USMT? I've gotten the inf files to work, but its scripting it so it runs automatically for each user and stores their profile in a unique location on the network which has got me stumped.

Thanks!
Tim
 
You can do this in a batch file. The command line for the tool is

scanstate [/c] [/i:inffile] [/l:logfile] [/v:verboselevel] [/f] [/u] [/x] <intermediate store>

SO you need to put the scanstate on a server:
Do your users have their homedrive connected to the server?

Then you might do this in the batch file

mkdir %HOMEDRIVE%\usmt or
mkdir H:\usmt if h is always the homedrive

Or if you have a special server for these files then you micght do this:

mkdir \\server\share\%USERNAME%

then you would run

scanstate [/c] [/i:inffile] [/l:logfile] [/v:verboselevel] [/f] [/u] [/x] <directory you created above>
 
Back
Top