The Net User tool allows you to add or alter user accounts and display their information on a Windows 11/10 computer with the help of your device’s command-line utility. In this post, we will learn how you can use the Net User command for administration tasks.
How to use Net User command
You can use the net user
command to create and modify user accounts on computers. When you use this command without command-line switches, the user accounts for the computer are listed. The user account information is stored in the user accounts database. This command works only on servers.
To run the net user command tool, using the WinX menu, open a Command Prompt, type net user
, and hit Enter. This will show you the user accounts on the computer. Thus, when you use net user
without parameters, it displays a list of the user accounts on the computer.
The syntax for its usage is:
net user [<UserName> {<Password> | *} [<Options>]] [/domain] net user [<UserName> {<Password> | *} /add [<Options>] [/domain]] net user [<UserName> [/delete] [/domain]]
Using net user
with the appropriate parameters allows you to carry out several functions. You can use the following parameters with the net user command:
- username is the name of the user account you want to add, delete, modify, or view.
- password will assign or change a password for the user’s account.
- * will produce a prompt for the password.
- /domain performs the operation on the primary domain controller of the current domain on computers running Windows NT Workstation which are members of a Windows NT Server domain.
- /add will add a user account to the user accounts database.
- /delete will delete a user account from the user accounts database.
Related: How to use Net Use command in Windows.
Net user Change Password
As an example let us say you want to change the password of a user. To change a user’s password, log on as an administrator, open an elevated command prompt type the following and press Enter:
net user user_name * /domain
You will be asked to type a password for the user. Type the new password and later again retype the password to confirm. The password will now be changed.
You could also use the following command. But in this case, you will not be prompted. The password will be directly changed right away:
net user user_name new_password
Amongst many such things, you can also use net user to:
For a detailed read, visit TechNet.
How to access administrator account in Windows 11 cmd?
With the help of the Net User command, you will be able to access administrator accounts on your Windows 11 computer. To get started, open Run, type ‘cmd’, hit Ctrl + Shift + Enter, and then execute Net User. If you want to know more about this command, check out the aforementioned guide.
Read: Check if your User Account has Admin rights
How to run cmd with administrator privileges in Windows 11?
To run the Command Prompt with administrator privilege in Windows 11, you can search out Command Prompt from the Start Menu, right-click on the available option, and select Run as administrator. You will get a UAC prompt, where you have to click on Yes. This will launch Command Prompt in the elevated mode with administrative privileges.
Also Read: Fix Can’t run Command Prompt as administrator.