
Creating a new user on Windows 11 without logging in is challenging because most methods require administrative access, which typically involves being logged into an existing account. However, there are a couple of approaches you can try, depending on your situation (e.g., if you have physical access to the device or specific tools). Below are the primary methods, starting with the most feasible:
1. Using Safe Mode with Command Prompt
If you can access Safe Mode, you can create a new user via the Command Prompt without needing to log into an existing account.
Steps:
- Boot into Safe Mode with Command Prompt:
- Restart your computer.
- As it boots, press F8 or Shift + F8 repeatedly (or the appropriate key for your device, often shown during startup) to access the Advanced Boot Options.
- Select Safe Mode with Command Prompt and press Enter.
- Open Command Prompt:
- Once in Safe Mode, the Command Prompt should open automatically. If not, it will be accessible after the system loads.
- Create a New User:
- Type the following command to create a new user:
net user NewUsername NewPassword /add
ReplaceNewUsernamewith the desired username andNewPasswordwith a secure password. - Press Enter. This creates a new standard user account.
- Add the User to the Administrators Group (Optional):
- If you want the new user to have administrative privileges, type:
net localgroup Administrators NewUsername /add
Press Enter.
- Restart the Computer:
- Type
shutdown /rand press Enter to restart the system. - After rebooting, you should see the new user account on the login screen.
Limitations:
- This method requires you to access Safe Mode, which may still prompt for credentials if no default Administrator account is enabled.
- Some systems disable Safe Mode access without a valid account or require a BitLocker recovery key if encryption is enabled.
2. Using a Windows Installation Media
If you can’t access Safe Mode or don’t have login credentials, you can use a Windows 11 installation USB or DVD to access Command Prompt and create a new user.
Requirements:
- A Windows 11 installation USB or DVD.
- A computer with a bootable USB/DVD drive.
Steps:
- Boot from Installation Media:
- Insert the Windows 11 installation USB or DVD.
- Restart your computer and boot from the media (you may need to enter the BIOS/UEFI by pressing a key like F2, F12, or Del to set the boot priority to USB/DVD).
- Select your language and click Next, then choose Repair your computer (not Install).
- Access Command Prompt:
- Navigate to Troubleshoot > Advanced Options > Command Prompt.
- Locate the System Drive:
- Type
diskpartand press Enter. - Type
list volumeto identify the drive letter of your Windows installation (usuallyC:orD:). - Exit diskpart by typing
exit.
- Create a New User:
- Use the same commands as in the Safe Mode method:
net user NewUsername NewPassword /addnet localgroup Administrators NewUsername /add
- Restart the Computer:
- Type
shutdown /rand press Enter. - Remove the installation media and let the system boot normally.
- The new user should appear on the login screen.
Limitations:
- Requires a Windows 11 installation media, which you’ll need to create on another computer if you don’t have one.
- BitLocker or other encryption may prevent access without a recovery key.
3. Using a Password Reset Disk (If Available)
If you have a password reset disk for an existing account, you can use it to regain access to an account and then create a new user from within Windows.
Steps:
- On the login screen, select the account and click Reset Password (if a reset disk is detected).
- Follow the prompts to reset the password.
- Log in with the new password.
- Once logged in, go to Settings > Accounts > Family & other users > Add account to create a new user.
Limitations:
- Requires a previously created password reset disk, which is rare for most users.
- Doesn’t work if you don’t have access to any account.
4. Alternative: Utilize the Built-in Administrator Account
Some Windows systems have a hidden Administrator account that can be enabled to create a new user.
Steps:
- Boot into Safe Mode with Command Prompt (as described in Method 1).
- Enable the built-in Administrator account:
net user Administrator /active:yes- Restart the computer (
shutdown /r). - Log in as the Administrator account (no password by default, unless previously set).
- Create a new user via Settings > Accounts > Family & other users or using the
net usercommands in Command Prompt.
Limitations:
- The built-in Administrator account may be disabled or password-protected.
- Requires Safe Mode access, which may still need credentials.
Important Notes:
- Administrative Access: Most methods require some form of elevated access (Safe Mode, installation media, or Administrator account). Without any access, creating a new user is nearly impossible due to Windows 11’s security measures.
- BitLocker or Encryption: If the drive is encrypted, you’ll need the recovery key to proceed with any of these methods.
- Legal Considerations: Ensure you have permission to modify user accounts on the device, as unauthorized access may violate laws or policies.
- If Locked Out Completely: If none of these methods work (e.g., no Safe Mode access, no installation media, or BitLocker issues), you may need to contact the device’s administrator or perform a factory reset (which erases all data).
If you have specific details about your situation (e.g., access to a USB, Safe Mode availability, or encryption status), let me know, and I can tailor the instructions further!




