How To Create A New User on Windows 11

Want to add another person to your PC — a family member, a colleague, or a separate account for work? Great choice. Creating a new user on Windows 11 keeps files, settings, and privacy separated, and it’s something you can do in minutes. In this how-to-create-new-user-in-windows-11-a-step-by-step-guide we’ll walk through every method (Settings, Control Panel, Command Prompt, PowerShell, and Microsoft account), explain user types (Administrator vs Standard), show troubleshooting tips, and give real-world recommendations so you pick the safest option for your situation.

Ready? Let’s make a new account together — fast, friendly, and secure.

Table of Contents

Why create a new user on Windows 11?

Think of user accounts like separate rooms in a house. Each person gets their own space for files, apps, and preferences. Creating a new user:

  • Protects privacy (files and settings stay separate)

  • Reduces risk (limited accounts stop accidental system changes)

  • Helps families (child accounts can be controlled)

  • Keeps work and personal life separated

If you share a device, creating a dedicated account is simply the smart thing to do.


Types of user accounts explained (what’s the difference?)

Before creating a user, know the main account types:

Administrator

  • Full control over the PC.

  • Can install apps, change system settings, add or remove users.

  • Use sparingly — only for trusted people.

Standard user

  • Everyday use: run apps, browse the web, personalize their account.

  • Limited: cannot change system-wide settings or install some apps without admin approval.

  • Best for most people.

Child account (Microsoft Family)

  • Managed account for kids with parental controls.

  • Limits screen time, content, purchases, and can share activity reports.


Before you start: what you’ll need

  • An active Windows 11 PC with internet (for Microsoft account methods).

  • Admin access if you’ll create accounts for others (you must be an administrator to add new users).

  • Optional: the email address for the new user (if you want to create a Microsoft account or link one).

Pro tip: If you want an account that never syncs to Microsoft servers, choose a local account. If you want OneDrive, Microsoft Store purchases, or Family Safety, choose a Microsoft account.


Method 1 — Create a new user via Settings (recommended, easy)

This is the most user-friendly and recommended method for most people.

Step-by-step (numbered)

  1. Click Start → open Settings (or press Windows + I).

  2. In Settings, choose Accounts from the left menu.

  3. Click Family & other users.

  4. Under Other users, click Add account.

  5. A Microsoft sign-in window appears:

    • If the new person has a Microsoft email (Outlook, Hotmail), enter it and follow prompts.

    • To create a local account instead, click I don’t have this person’s sign-in information, then choose Add a user without a Microsoft account.

  6. If creating a local account, enter:

    • User name

    • Password (recommended — but you can leave blank if you want no password)

    • Password hint

  7. Click Next and the account is created.

  8. To change account type (Admin or Standard), click the new account in Other usersChange account type → pick Administrator or Standard UserOK.

Quick notes

  • This method lets you create both Microsoft-linked and local accounts.

  • The new user will get a profile folder in C:\Users\username once they sign in.


Method 2 — Create a local account (offline option)

Use this when you don’t want the account tied to Microsoft services.

Steps

  1. Open Settings → Accounts → Family & other users.

  2. Click Add account.

  3. Select I don’t have this person’s sign-in information.

  4. Click Add a user without a Microsoft account.

  5. Provide username and password (or leave blank).

  6. Finish by clicking Next.

When to use a local account

  • You don’t want cloud sync or OneDrive.

  • You need a simple offline account for a kiosk, lab, or test machine.


Method 3 — Create a child / family account (with parental controls)

Ideal for parents who want to monitor and protect their kids online.

Steps to add a child

  1. Settings → AccountsFamily & other users.

  2. Under Your family, click Add a family member.

  3. Choose Add a child and enter their email (or create a new one).

  4. Follow on-screen prompts — Microsoft Family will handle screen time, content filters, purchase controls.

What you can control

  • Screen time limits

  • Content restrictions (websites, age-appropriate apps)

  • Activity reporting

  • Purchase approvals


Method 4 — Create a user via Control Panel (classic way)

Some folks prefer the classic Control Panel route.

Steps

  1. Open Control Panel (type Control Panel in Start and open it).

  2. Go to User AccountsUser Accounts again → Manage another account.

  3. Click Add a new user in PC settings (this opens Settings).
    Note: Control Panel redirects to Settings for much of the account management in Windows 11. The Settings method is still preferred.


Method 5 — Create a user using Command Prompt (CMD)

For power users or when GUI is limited.

Steps (Admin required)

  1. Open Command Prompt as Administrator (Windows + XWindows Terminal (Admin) → choose Command Prompt tab).

  2. Create a new user:

    net user NewUserName Password123 /add
    • Replace NewUserName and Password123.

  3. (Optional) Add the user to Administrators group:

    net localgroup Administrators NewUserName /add
  4. The account is created immediately.

Example

net user alice SecureP@ssw0rd /add
net localgroup Administrators alice /add

Tip

  • Use strong passwords.

  • If you want a passwordless local account, omit the password (not recommended for security).


Method 6 — Create a user using PowerShell (advanced, scriptable)

PowerShell gives more control and is ideal for automation.

Steps (Admin PowerShell)

  1. Open Windows Terminal (Admin) → PowerShell.

  2. Create a local user:

    $Password = Read-Host -AsSecureString "Enter Password"
    New-LocalUser -Name "NewUserName" -Password $Password -FullName "Full Name" -Description "Optional description"
  3. Add user to a group (e.g., Administrators):

    Add-LocalGroupMember -Group "Administrators" -Member "NewUserName"
  4. Verify:

    Get-LocalUser

Example (single-line, no prompt)

$pw = ConvertTo-SecureString "P@ssWord123" -AsPlainText -Force
New-LocalUser -Name "bob" -Password $pw -FullName "Bob Smith"
Add-LocalGroupMember -Group "Users" -Member "bob"

How to change account type (Standard ⇄ Administrator)

You might need to promote or demote an account later.

Via Settings

  1. Settings → Accounts → Family & other users.

  2. Click the account → Change account type.

  3. Choose Administrator or Standard UserOK.

Via Command Prompt

net localgroup Administrators NewUserName /add
net localgroup Administrators NewUserName /delete (to remove)

How to delete a user account safely

If you need to remove an account but keep files:

Steps

  1. Settings → Accounts → Family & other users.

  2. Click the user → Remove.

  3. Windows will ask if you want to Delete account and data — be careful:

    • Select Keep files if you want to save their files to the desktop.

    • Select Delete to remove everything.

Manual backup (recommended)

Before deleting, sign in as an admin and copy C:\Users\username to a safe location.


How to switch users or sign in quickly

  • Press Ctrl + Alt + DelSwitch user.

  • Click the Start button → current user name → Sign out or Switch user.

  • On the lock screen, choose another user account and sign in.

Quick tip: Use Windows + L to lock your PC and switch accounts securely.


Troubleshooting: account creation issues and fixes

Here are common problems and how to fix them.

Problem: “You need a Microsoft account” or can’t add a Microsoft email

  • Solution: Choose Add a user without a Microsoft account, or create a new Microsoft account online and try again.

Problem: “Access denied” when using CMD or PowerShell

  • Solution: Make sure you opened the terminal as Administrator.

Problem: New user can’t sign in or profile won’t load

  • Solution: Remove temporary profile files in C:\Users\Temp or check disk space; create a fresh account and migrate files manually.

Problem: Account missing from sign-in screen

  • Solution: Check Settings → Accounts → Family & other users; confirm the account is enabled and not disabled by Group Policy (work/school PCs).


Security tips and best practices

  • Use Standard accounts for daily use; only use Administrator when necessary.

  • Use strong passwords or Windows Hello (PIN/fingerprint) for fast, secure sign-in.

  • For children, use Microsoft Family controls.

  • Keep a separate admin account for emergencies — don’t use the admin account for browsing or email.

  • Back up important profile data (C:\Users\username) before deleting accounts.


Common questions (featured-snippet friendly)

How do I create a new user on Windows 11?

Open Settings → Accounts → Family & other usersAdd account and follow the on-screen instructions to add a Microsoft or local account.

How do I create a local user without a Microsoft account?

In Add account, click I don’t have this person’s sign-in informationAdd a user without a Microsoft account → enter username and password.

How do I make a user an administrator?

Settings → Accounts → Family & other users → click the user → Change account type → select Administrator.

How do I add a child account with parental controls?

Settings → Accounts → Family & other users → Add a family member → choose Add a child and follow prompts to set up Family Safety.


5 FAQs (short, precise answers)

Q1 — Can I create a new user without admin rights?
A1 — No. Creating new user accounts requires administrator privileges.

Q2 — Will a new user have access to my files?
A2 — No. Each user has a separate profile. Only shared folders (e.g., Public) are visible to others.

Q3 — Can I convert a Microsoft account to a local account?
A3 — Yes. Settings → Accounts → Your info → Sign in with a local account instead.

Q4 — How many user accounts can Windows 11 have?
A4 — There’s no strict small limit; practically you can create many accounts, limited by disk space and system management.

Q5 — How do I reset a forgotten password for another user?
A5 — Use an admin account: Settings → Accounts → Family & other users → select the user → Reset password (or use net user username * in an elevated CMD).


Summary: key takeaways

  • Creating a new user in Windows 11 is quick and gives each person their own private workspace.

  • Use Settings → Accounts → Family & other users for the easiest experience.

  • Choose Standard accounts for daily use and Administrator only when necessary.

  • For kids, use Microsoft Family to add restrictions and monitor activity.

  • Advanced users can script account creation with CMD (net user) or PowerShell (New-LocalUser).

  • Always backup user data before deleting an account and follow security best practices (strong passwords, limited admin use).

Scroll to Top