How to Create a New Windows User Account
Adding a new user account in Windows is one of those tasks that looks simple on the surface — but the right approach depends on your Windows version, whether you're on a personal or work machine, and what level of access you want that new user to have. Here's what you actually need to know before you start clicking.
Why User Accounts Matter in Windows
Windows is built around the concept of user profiles. Each account gets its own desktop, documents folder, browser history, app settings, and preferences — completely separate from every other account on the same machine. This matters whether you're sharing a family PC, setting up a work laptop for a new employee, or just keeping your own personal and work environments separate.
There are two broad types of accounts you'll encounter:
- Local accounts — stored entirely on the device, no Microsoft account required
- Microsoft accounts — linked to an email address, syncing settings, files, and purchases across devices via the cloud
Within those types, accounts also have privilege levels:
| Account Type | What It Can Do |
|---|---|
| Administrator | Install software, change system settings, manage other users |
| Standard User | Use apps, save files, change personal settings only |
| Child (Family Safety) | Subject to screen time limits and content filters via Microsoft Family |
Choosing the wrong privilege level is the most common mistake people make when setting up accounts.
How to Create a New User in Windows 11
Windows 11 routes most account management through the Settings app rather than the older Control Panel. Here's the general path:
- Open Settings (Win + I)
- Go to Accounts
- Select Family & other users (or just Other users depending on your build)
- Under "Other users," click Add account
At this point, Windows will ask for a Microsoft account email address. If you want to create a local account instead, look for the option that says "I don't have this person's sign-in information", then choose "Add a user without a Microsoft account" on the next screen.
You'll then set a username and password, and optionally set up security questions — which are your recovery fallback if the password is forgotten.
How to Create a New User in Windows 10
The process in Windows 10 is nearly identical, with minor interface differences:
- Open Settings → Accounts
- Click Family & other users
- Under "Other users," select Add someone else to this PC
- Follow the same prompts — use a Microsoft account, or skip through to create a local account
One important note: on Windows 10 Home, you won't have access to some of the more granular group policy controls that Windows 10 Pro or Enterprise offer. If you're managing accounts in a business environment, the edition of Windows you're running changes what tools are available to you.
Setting Account Privileges After Creation
Once the account exists, you can change whether it's a Standard User or an Administrator:
- Go back to Settings → Accounts → Family & other users
- Click on the account name
- Select Change account type
- Choose Administrator or Standard User from the dropdown
🔒 Best practice: most users — including people you trust — should operate as Standard Users day-to-day. Administrator accounts have full access to system files, the registry, and installed software. Limiting administrator privileges reduces the risk of accidental (or malicious) system changes.
The Difference Between Family and Other Users
Windows separates accounts into two buckets inside Settings:
Family accounts are tied to Microsoft Family Safety. They let you apply screen time limits, content filters, spending restrictions, and activity reports — primarily designed for children or teenagers using a shared device. Adding a family member requires both parties to have Microsoft accounts.
Other users is the general-purpose option for anyone else — roommates, colleagues, guests, or yourself using a secondary profile. These accounts can be either Microsoft or local, and you have more direct control over their privilege level without the parental oversight layer.
Using Command Prompt or PowerShell
For users comfortable with the command line — or anyone managing multiple machines — accounts can also be created via Command Prompt or PowerShell with administrator privileges.
The basic command to add a local account:
net user [username] [password] /add To give that account administrator rights:
net localgroup administrators [username] /add PowerShell offers more granular control and is the preferred tool in enterprise and IT environments, where Active Directory or Azure AD often handles account creation at scale rather than the local Settings app.
Variables That Affect Your Approach 🖥️
What works cleanly for one setup can create friction in another. The key factors that shape which method makes sense:
- Windows edition — Home vs. Pro vs. Enterprise changes which tools and policies are available
- Domain vs. workgroup — Business machines joined to a corporate domain are managed differently than standalone home PCs
- Microsoft account requirement — Some organizations or device configurations enforce Microsoft account sign-in; others allow or require local accounts
- Number of accounts being created — One account for a family member is a Settings task; fifty accounts for new employees is an IT infrastructure question
- Age and access level of the intended user — A child account, a guest account, and a co-admin account are all technically "new users" but set up completely differently
The built-in Windows Settings path handles most personal and small household scenarios cleanly. But the right approach for a business, a shared lab computer, a child's device, or a managed IT environment can look quite different — even when the end result is the same: a new user who can log in.