Introduction: create windows 10 new user account
Welcome to our blog post where we’ll explore how to add users in Windows using Command Prompt. This method is handy for system administrators or anyone comfortable with the command-line interface. Whether you’re setting up accounts on a personal computer or managing users in a corporate environment, understanding these commands can save you time and effort. Let’s dive in!
Step 1: Accessing Command Prompt
First things first, you need to open Command Prompt with administrative privileges. You can do this by typing “cmd” in the Windows search bar, then right-clicking on “Command Prompt” and selecting “Run as administrator.”

Second Option for open command prompt
Press Win + R and type “cmd” hit shift+Enter . it will open command prompt with Administrative privileges .

Step 2: Adding a User
Once Command Prompt is open, you can use the net user
command to add a new user. Here’s the basic syntax:
net user [username] [password] /add
Replace [username]
with the desired username and [password]
with the password you want to set for the user.
net user test test123 /add
Once you’ve executed the command to add a new user, you can confirm its success by utilizing the net user command again .For example:

When adding a user with a username containing a space and a password with special symbols, you need to enclose both the username and password within double quotation marks. Here’s the modified command syntax:
net user [“user_ name with space”] [“password with special symbol”] /add
Replace [user name with space] with the desired username containing a space and [password with special symbol] with the password including special symbols. For example:
net user “test A” “Test@123” /add

Step 3: Deleting a User
You can delete user with command prompt also.Here’s the syntax:
net user [username] /delete
net user test /delete
net user “test A” /delete

Step 4: Verifying the User Addition
After executing the command, you should see a message indicating that the user account was successfully created. You can also verify the user’s addition by going to “Control Panel” > “User Accounts” > “User Accounts” > “Manage User Accounts.”
Adding users via Command Prompt provides a quick and efficient way to manage user accounts in Windows. By following these simple steps, you can create new accounts with ease and customize settings as needed. Whether you’re a system administrator or a tech-savvy user, mastering these commands can streamline user management tasks and enhance your Windows experience.
Pingback: difference between information technology and computer science engineering