How to Rename a Local User in CMD: Step-by-Step Guide
Learn how to easily rename a local user account in Command Prompt with our quick guide. Perfect for Windows users!
Published
Video transcript
To rename a local user in CMD:
1. Open Command Prompt as an administrator.
2. Use the command `WMIC useraccount where name='current_name' rename new_name`. For example, `WMIC useraccount where name='oldUser' rename newUser`.
Note: This does not change the user folder name in C:\Users.
Questions and answers
Can I rename a local user without admin rights?
No, renaming a local user in CMD requires administrator permissions.
Does renaming a user in CMD change the folder name?
No, renaming a user does not change their folder name in C:\Users.
What is the WMIC command?
WMIC stands for Windows Management Instrumentation Command-line, a tool for managing Windows systems.