wilmayo

New Member
Joined
Jun 28, 2025
Messages
1
Just a suggestion for forum admin: I recently installed Win 11 using the forum guidance and Rufus ("How to Install Windows 11 Using Rufus: Bypass Restrictions and Create Local Account"). Except for one minor issue, it worked very well. Under item #5 in the guidance it says: "You can even pre-define a username under Create a local account with username. Enter your desired name". This, of course, is true. However, I think it would be very helpful to add some additional information. Based on my experience, when following that step, you can indeed enter a Local User Name, However, there is no opportunity to also enter a password. I found later that this could be a confusing and necessary function. When the installation is completed, one is left working in Windows 11 under the chosen user name. Then when you try to re-boot, you are instructed to change the password before re-boot is allowed. What is the existing password? You did not enter one nor were you advise that you needed one on re-boot. Just adding a "new" password and verification does not work as you first need to put in the "original" one. In order for this to all work properly, the user must (as nearly as I can tell) change (or add) a password for the local user account prior to exiting and re-booting the system. I can't figure how to log back in otherwise.
I think it would be very helpful if item #5 in your guidance was supplemented with further instructions regarding this.
Or. Did I miss something along the way?

P.S. I note that item #7 suggests that a new password can be entered "for further security". This is good, but emphasis should be placed on the fact that a new password will be required in order to re-boot and log back in.
 

Last edited:
Thank you for your detailed suggestion and for sharing your experience!
You’ve made a very insightful point about the account creation process when using Rufus to bypass the Windows 11 setup restrictions and create a local user account. This exact situation does frequently confuse users: You can set a username during the Rufus process, but there’s no option for setting the password at the same time. After installation, Windows may prompt you to change a password, but—since no password was ever set—you’re left wondering what the “current” password is supposed to be.
Your proposed addition to the forum guide makes a lot of sense. Supplementing step #5 with a clarification like:
“Note: While you can specify a local username during this setup, the option to set an initial password is not available at this stage. After installation, before rebooting or logging out, it’s strongly recommended to manually add a password to the new local account. You can do this by going to Settings > Accounts > Sign-in options, or by running net user <username> * in Command Prompt, to avoid login issues on reboot.”
would help prevent exactly the issue you described.
No, you didn’t “miss something”—this is currently a gap in the workflow, and you’ve pointed out precisely where new users may get tripped up. I’ll flag your feedback for the guidance authors and forum admins so they can consider updating the documentation.
If you’re still locked out or need instructions on setting up the password post-install, let me know and I’ll walk you through it! Thanks again for taking the time to help improve the forum guides for everyone.
 

Thank you for your detailed suggestion and for sharing your experience!
You’ve made a very insightful point about the account creation process when using Rufus to bypass the Windows 11 setup restrictions and create a local user account. This exact situation does frequently confuse users: You can set a username during the Rufus process, but there’s no option for setting the password at the same time. After installation, Windows may prompt you to change a password, but—since no password was ever set—you’re left wondering what the “current” password is supposed to be.
Your proposed addition to the forum guide makes a lot of sense. Supplementing step #5 with a clarification like:

would help prevent exactly the issue you described.
No, you didn’t “miss something”—this is currently a gap in the workflow, and you’ve pointed out precisely where new users may get tripped up. I’ll flag your feedback for the guidance authors and forum admins so they can consider updating the documentation.
If you’re still locked out or need instructions on setting up the password post-install, let me know and I’ll walk you through it! Thanks again for taking the time to help improve the forum guides for everyone.
thanks gpt... I can see the new user in the "users" folder but I do not see it in the "accounts" or "sign-in options'
 

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).
 

Back
Top