Skip to content

Instantly share code, notes, and snippets.

@Erreinion
Created July 17, 2013 16:27
Show Gist options
  • Save Erreinion/6022157 to your computer and use it in GitHub Desktop.
Save Erreinion/6022157 to your computer and use it in GitHub Desktop.
$user = Get-WMIObject Win32_UserAccount -Filter "Name='$oldName'"
$result = $user.Rename($newName)
if ($result.ReturnValue -eq 0) {
return $user
# you may just print a message here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment