The first time somebody told me to “just use net user” to reset a Windows password, I remember sitting in front of that blinking Command Prompt cursor and just… not moving. It seemed like the kind of thing that could break something. It doesn’t. Type it once and it stops feeling like a big deal, and honestly after that you start to wonder why Settings menus even exist.
Maybe you’re locked out right now. Maybe you’re the person who ends up handling the family PC. Or maybe you’re the office “computer person” and this is the third password reset somebody’s asked you for this month. Doesn’t really matter how you got here — below is the net user method first, since that’s probably what you typed into Google, and after that a few simpler point-and-click options for anyone who’d rather skip the command line entirely.
What Net User Actually Does
Net user has been part of Windows since the old NT days, and it hasn’t really changed. It still lets you view, add, edit, and delete local accounts, all from Command Prompt, no Settings app required.
A few reasons people end up using it:
- Locked out of one account but still have access to an admin one
- Settings or Control Panel is being weird (it does that sometimes)
- Managing a handful of accounts and not wanting to click through the same menu five times
- Just prefer the command line, no other reason needed
Before you go further, know this: it only touches local Windows accounts. If someone logs in with an @outlook.com or @hotmail.com address, net user isn’t going to change that password on Microsoft’s end. You’d have to reset it through Microsoft’s own site, which I’ll get into a bit further down.
Changing a Password with Net User, Step by Step
1. Open an Admin Command Prompt
Click Start, type cmd, right-click Command Prompt, choose Run as administrator. This part matters. Skip it and you’ll just get slapped with an “Access Denied” message.
PowerShell or Windows Terminal work fine too if that’s more your speed — same rule applies, run them as admin.
2. Figure Out the Exact Username
Not sure how the account name is spelled or spaced? Run:
net user
This lists every account on the machine. Copy the name exactly — Windows cares about spacing and spelling more than you’d expect.
3. Run the Actual Command
The format is:
net user Username NewPassword
For example, resetting John’s password would look like:
net user John Password123!
Hit Enter. “The command completed successfully” means it worked — the password’s already been swapped, nothing else to click.
Worth knowing:
- Username with a space in it? Wrap it in quotes:
net user "John Smith" NewPassword123 - Passwords can run up to 127 characters if you want to go long
- The old password is gone the moment you do this — Windows never stores it anywhere readable, so there’s no undo, only reset
4. Typing the Password Somewhere Public?
Use an asterisk instead of typing it straight into the command:
net user John *
It’ll ask for the new password twice and nothing shows on the screen while you type. Small thing, but useful if you’re at a shared desk.
5. Force a Password Change on Next Login
If you’re setting an account up for someone else and don’t want to be the keeper of their password forever, add:
net user Username /logonpasswordchange:yes
They’ll be asked to set their own the next time they sign in.
Changing a Password in Windows 10 Without the Command Line
If typing commands isn’t your thing, here’s what most people actually click through day to day.
Through Settings
- Windows key + I to open Settings
- Accounts, then Sign-in options
- Find Password, click Change
- Type the current password, hit Next, set the new one
Even if the account uses a Microsoft email to sign in, this same screen still works — it just processes the change through Microsoft’s servers instead of storing it locally.
The Ctrl+Alt+Delete Way
- Ctrl + Alt + Delete
- Click Change a password
- Old password first, then the new one twice
- Enter
This is what I reach for whenever Settings decides to load slowly, which happens more than anyone would like.
Resetting Someone Else’s Password as an Admin
Different situation here — you’re changing an account that isn’t yours. A kid’s laptop, an employee’s account, whatever it is.
Control Panel
- Open Control Panel, switch to Large icons, click User Accounts
- Manage another account
- Pick the account, click Change the password
- Set it and confirm
Computer Management
- Right-click Start, choose Computer Management
- Local Users and Groups, then Users
- Right-click the account, Set Password
- Click through the warning, type and confirm
If you’re handling several accounts, this second route tends to be faster once you’re already in there.
Which One Should You Actually Use?
| Situation | Best pick |
|---|---|
| Comfortable with Command Prompt, want it fast | net user |
| Several accounts, one machine | net user or Computer Management |
| Just your own password | Settings or Ctrl+Alt+Delete |
| Locked out, but another admin account exists | net user from that account |
| Would rather click than type | Control Panel or Settings |
| Signs in with a Microsoft email | Microsoft’s account website |
Questions People Usually Ask
Do I need admin rights for net user?
Yes. No admin, no dice — Command Prompt just refuses.
Will I lose any files?
No. Changing a password doesn’t touch anything else. The one exception: BitLocker or EFS-encrypted files tied to that account can sometimes get affected by a password reset. Not common, but worth knowing.
No other admin account and I’m fully locked out — now what?
Net user can’t help here since you need admin access just to run it. At that point it’s a password reset disk, Microsoft’s recovery page for Microsoft accounts, or booting into recovery to build a new admin account.
Windows 11 too?
Same commands, same steps, all of it works identically there.
Domain accounts?
Yes, but with the /domain switch and the right network permissions — a bit more involved than what’s covered here. For a home PC or single office machine you’re almost certainly dealing with local accounts anyway.
There isn’t really a “correct” way to do this — it comes down to preference. Net user becomes second nature fast if you’re managing more than one machine or just like having that level of control. If you’d rather stick to something familiar, Settings or Ctrl+Alt+Delete does the same job.

Either way, that’s five methods covering pretty much any scenario, your account or someone else’s.
If you’re dealing with a full lockout with zero working admin access, that’s a different problem involving recovery tools — happy to go through that separately if that’s actually what brought you here.