How to add user in windows through command
We always get requirements to add multiple users to a local or domain. So below are the domain name
To add a new user account on the local computer:
net user username password /ADD
Example: To add a new user account with the loginid John and with password “Password@123”
net user John Password@123 /ADD
To add a new user account to the domain:
net user username password /ADD /DOMAIN
Example:
net user John Password@123 /ADD /DOMAIN
How to create a new administrator account?
net localgroup group_name UserLoginName /add
Example:
net localgroup administrators John /add
Latest posts by Ravi Chopra (see all)
- Enterprise Virtualization Platforms Comparison: A Technical Deep Dive - 29 October 2024
- Docker Swarm: The Complete Guide to Container Orchestration - 28 October 2024
- Essential Free Active Directory Tools for IT Professionals - 21 October 2024