Hi 1morelia — good detail, and you’re not alone: seeing a profile folder under C:\Users but not seeing the account in Settings usually means the profile folder was created by the installer/OOBE step but a matching local user account (or password) was never fully created/registered. You can fix this from an administrator account. Before any changes, please back up the C:\Users\<that-folder> data (copy Documents, Desktop, etc. to an external drive or another folder.
Quick checklist first — please tell me which of these match your situation:
- Are you currently signed in to Windows as an Administrator? (If yes, continue. If no, do you have an admin password or another admin account?
- Are you already on the desktop (post-install) or still inside the OOBE/setup screens?
- Which Windows edition (Home / Pro) are you using?
If you’re on the desktop and have an admin account, follow these steps.
1) Check existing local accounts
- Open an elevated Command Prompt or PowerShell: right‑click Start → Windows Terminal (Admin) or Command Prompt (Admin).
- Run: net user
This lists all local accounts and will show whether the username appears. (Command-line account methods are the reliable fallback when Settings doesn't show the option.
2) If the account is missing: create it and set a password
- To create a new local account and set its password in one command:
net user "DesiredUserName" "YourNewPassword" /add
- Or to be prompted to type password (hides it on screen):
net user "DesiredUserName" * /add
- Make it an administrator (optional):
net localgroup administrators "DesiredUserName" /add
After that the new account will appear in Settings → Accounts → Family & other users (or Other users).
3) If the profile folder already exists and you want Windows to use that folder
- The safe/simple approach: create the account as above, then copy the user data (Desktop, Documents, Pictures, AppData where needed) from the existing C:\Users\<old-folder> into the new C:\Users\<DesiredUserName> profile. This avoids registry tweaks and is least risky.
- If you prefer to make the new account use the existing folder name exactly, that requires editing the ProfileImagePath for the user SID under:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
— find the new user’s SID, change ProfileImagePath to C:\Users\<existing-folder>. Backup the registry first and be careful with permissions. (If you want these registry steps, tell me and I’ll give the exact sequence and safety notes.
4) If the account exists in net user but has no password / you’re blocked by a password prompt on reboot
- Set or reset its password as admin:
net user "ExistingUserName" *
(you’ll be prompted to type the new password twice)
- Or:
net user "ExistingUserName" "NewPassword"
This forces a valid password so Windows won’t prompt for an unknown “original” password on reboot.
5) GUI alternative (if Settings works)
- Settings → Accounts → Family & other users → Add someone else to this PC → I don’t have this person’s sign-in information → Add a user without a Microsoft account — then set username & password. (If that flow is missing/blocked, use the net user method above.
6) If you do NOT have any admin access
- We’ll need to enable or gain an admin shell from outside Windows (Shift+F10 in OOBE to add an account temporarily, or boot to recovery/installation media to enable the built-in Administrator). Tell me whether you can boot to install/recovery media or are still in OOBE and I’ll give exact commands. Community posts describe using a command prompt during OOBE to add users, but it depends on your exact installer state.
A couple of warnings and tips
- If the device uses BitLocker and an MSA was used earlier, changing/removing accounts can trigger recovery prompts — check where your recovery key is stored before wide changes.
- If the profile folder you see was created during OOBE but no account exists, do not delete the folder yet — copy it first, then create the account and move files as needed.
- If your Windows edition is Home and lusrmgr.msc is unavailable, stick with net user or Settings methods.
If you want, tell me:
- The exact folder name you see under C:\Users,
- The username you expect to sign in as,
- Whether you have admin rights now.
I’ll give the exact command(s) tailored to your answers (and if you want the registry route to reuse the exact profile folder, I’ll provide step‑by‑step with backup instructions).