Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.5 KiB

  1. ;// %1 - existing user, %2 - new user
  2. MessageId=100 SymbolicName=MSG_MOVING_PROFILE_LOCAL
  3. Language=English
  4. Moving profile from %1 to %2...
  5. .
  6. ;// %1 - existing user, %2 - new user, %3 - computer
  7. MessageId= SymbolicName=MSG_MOVING_PROFILE_REMOTE
  8. Language=English
  9. Moving profile from %1 to %2 on %3...
  10. .
  11. ;// no args
  12. MessageId= SymbolicName=MSG_SUCCESS
  13. Language=English
  14. Move was successful.
  15. .
  16. ;// %1 - error code (DWORD), %2 - text of error
  17. MessageId= SymbolicName=MSG_DECIMAL_ERROR
  18. Language=English
  19. Move failed.
  20. Error %1!u!
  21. %2
  22. .
  23. ;// %1 - error code (DWORD), %2 - text of error
  24. MessageId= SymbolicName=MSG_HEXADECIMAL_ERROR
  25. Language=English
  26. Move failed.
  27. Error 0x%1!X!
  28. %2
  29. .
  30. MessageId= SymbolicName=MSG_HELP
  31. Language=English
  32. Command Line Syntax:
  33. moveuser <user1> <user2> [/y] [/c:computer] [/k]
  34. Description:
  35. moveuser.exe changes the security of a profile from one user to another.
  36. This allows the account domain to change, and/or the user name to change.
  37. Arguments:
  38. user1 Specifies a user who has a local profile.
  39. user2 Specifies the user who will own user1's profile. This
  40. account must exist.
  41. /y Allow overwrite of existing profile.
  42. /c Specifies the computer to make the changes to.
  43. /k Specifies if user1 is a local user, then the user account
  44. should be kept.
  45. Specify domain users in DOMAIN\USER format. Specify only USER for
  46. local accounts.
  47. .