Difference between revisions of "User Mgmt"

From Stadm
Jump to navigationJump to search
 
Line 11: Line 11:
 
*\\server\share\storage can be local or network, it is where scanstate will save the profile backup
 
*\\server\share\storage can be local or network, it is where scanstate will save the profile backup
 
*how to load backup profile to a new profile:
 
*how to load backup profile to a new profile:
 +
===References==
 +
*http://technet.microsoft.com/en-us/library/dd560755(v=ws.10).aspx
 +
*http://technet.microsoft.com/en-us/library/dd560804(v=ws.10).aspx
 +
*http://technet.microsoft.com/en-us/library/dd883247(v=ws.10).aspx

Latest revision as of 13:51, 26 August 2014

Title

Migrating Local Users to domain users

  • copy over(or install) USMT from server so that you can execute LoadState and SaveState commands from windows
  • if on domain server
xcopy \\server\share\USMTx86 C:\USMT
  • how to migrate only one profile:
scanstate /i:migapp.xml /i:miguser.xml \\server\share\storage /ue:*\* /ui:"LOCALUSERNAME"
  • /ue is for user exculdes which we exclude all users with *\* first(scanstate by default backups all users profiles)
  • /ui is for user include and has precedence over /ue even if user is part of the domain/workgroup that is excluded if /ui is specified profile will be backed up
  • \\server\share\storage can be local or network, it is where scanstate will save the profile backup
  • how to load backup profile to a new profile:

=References