- To create a local account on Windows 11, open Settings > Accounts > Other users (or Family & other users), click “Add account,” choose “I don’t have this person’s sign-in information,” select “Add a user without a Microsoft account,” and confirm the account information.
- Another way to create a local account is to run the “net user USER-NAME PASSWORD /add” on Command Prompt (admin) or the “New-LocalUser “NEW-ACCOUNT-NAME” -Password $Password -FullName “USER-FULL-NAME” -Description “DESCRIPTION” on PowerShell (admin).
- Alternatively, you can use Computer Management and the legacy User Accounts (netplwiz) settings.
On Windows 11, you can create a local account if you prefer not to use a Microsoft account. A local account stores your settings, files, and preferences only on the device, rather than syncing them through Microsoft’s cloud services, making it a good option for users who prioritize privacy or want a simpler offline experience.
Although Microsoft strongly encourages signing in with a Microsoft account to unlock features such as OneDrive integration, Microsoft Store access, device synchronization, password recovery, and settings sync across multiple PCs, a local account is still fully supported. You can create one for yourself or add additional local accounts for other users without linking them to Microsoft services.
Windows 11 provides several ways to create a local account, including the Settings app, Computer Management, User Accounts (netplwiz), Command Prompt, and PowerShell. The best method depends on your edition of Windows and how you prefer to manage user accounts.
If you’re setting up a new device and want to install Windows 11 without a Microsoft account, the process is different and depends on whether you’re using Windows 11 Home or Pro. You can also create custom installation media with Rufus to bypass the Microsoft account requirement during setup.
In this guide, I will teach you three different approaches to creating a local account on Windows 11.
- Create local account on Windows 11
- Create local account from Computer Management
- Create local account from legacy User Accounts
- Create local account from Command Prompt
- Create local account from PowerShell
- Pureinfotech’s Take
Create local account on Windows 11
To create a local account from the Settings app on Windows 11, follow these steps:
-
Open Settings on Windows 11.
-
Click on Accounts.
-
Click the Other users tab.
-
Click the Add account button under the “Other users” section.

-
Click the “I don’t have this person’s sign-in information” option.

-
Click the “Add a user without a Microsoft account” option.

-
Create a Windows 11 local account by confirming a name and password.

-
Configure the security questions to recover the account if the password is lost.
-
Click the Next button.
-
(Optional) Select the newly created account and click the “Change account type” button.

-
Use the “Account type” drop-down menu and select the Administrator option.

-
Click the OK button.
Once you complete the steps, the new account will appear on Windows 11, and the new user should be able to log in as a standard user or administrator, depending on the account type settings.
The Settings app option is the official way to set up new accounts. You can still access the “User Accounts” settings from the Control Panel, but creating a new account opens the “Other Users” page in the Settings app.
Create local account from Computer Management
Another easy way to create accounts is through the Computer Management console. When you use this tool, you can create a local standard account without security questions. Also, this interface has been designed to speed up the setup process by clicking the “Create” button, which adds a new account and clears the interface so you can continue creating additional accounts.
To create a local account on Windows 11 through Computer Management, follow these steps:
-
Open Start.
-
Search for Computer Management and click the top result to open the app.
-
Open the following path:
System Tools > Local Users and Groups > Users.
-
Right-click on Users and choose the New User option.

-
Confirm the account name in the “User name” setting.
Quick tip: Usually, you want to use one word for the username. You can specify the complete name in the optional “Full name” setting. -
Create and confirm the password.
-
(Optional) Clear the “User must change password at next logon” option.
-
Click the Create button.
-
Continue creating additional accounts or click the Close button.
-
(Optional) Right-click the newly created account and choose the Properties option.
Quick note: The system creates accounts as standard users. If you want to give the account administrative privileges, continue with the steps below. -
Click the Member Of tab.
-
Click the Add button.

-
Type “Administrators” in the “Enter the object name to select” setting.

-
Click the Check Name button.
-
Click the OK button to set the account as an administrator.
-
Click the Apply button.
-
Click the OK button.
After you complete the steps, the new local account without a connection to the Microsoft services will be created on your computer.
Create local account from legacy User Accounts
Also, it’s still possible to create a local account through the legacy User Accounts (netplwiz) settings, and here’s how:
-
Open Start.
-
Search for netplwiz and click the top result to open the User Accounts settings.
-
Click the Add button.

-
Click the “Sign in without a Microsoft account” option.

-
Click the Local account button.

-
Confirm the username in the “User name” setting.

-
Create and confirm a password.
-
Create a hint to remember your password in the “Password hint” settings.
-
Click the Next button.
-
Click the Finish button.
-
(Optional) Select the newly created account and click the Properties button.
Quick note: The system creates accounts as standard users. If you want to give the account administrative privileges, continue with the steps below. -
Click the Group Membership tab.
-
Choose the Administrator option.

-
Click the Apply button.
-
Click the OK button.
Once you complete the steps, the local account will be created on Windows 11, and it will be ready from the Lock Screen.
Create local account from Command Prompt
It’s faster to create and manage an account using Command Prompt if you are comfortable typing commands.
To create a local standard or administrator account on Windows 11 with Command Prompt:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to create a new account and press Enter:
net user USER-NAME PASSWORD /add

In the command, change USER-NAME and PASSWORD to the credentials you want to use for the new user account.
-
(Optional) Type the following command to add the newly created account to the “Administrators” group and press Enter:
net localgroup administrators USER-ACCOUNT /add
In the command, replace USER-ACCOUNT with the account name you want to add to the administrators’ group.
If you want to test the new changes, sign out. You will notice the new user account in the bottom-left corner of the screen. Then, select the new user account and sign in.
Create local account from PowerShell
To create an account without a Microsoft account with PowerShell, follow these steps:
-
Open Start.
-
Search for PowerShell, right-click the top result, and select the Run as administrator option.
-
Type the following command to temporarily store the password inside a string in the “$Password” variable and press Enter:
$Password = Read-Host -AsSecureString
-
Type the password for the new Windows 11 account and press Enter.
-
Type the following command to create the new account with PowerShell and press Enter:
New-LocalUser "NEW-ACCOUNT-NAME" -Password $Password -FullName "USER-FULL-NAME" -Description "DESCRIPTION"

In the command, change NEW-ACCOUNT-NAME to the account name and USER-FULL-NAME to the user’s full name. Also, replace DESCRIPTION with the description you want to use for the account.
-
Type the following command to add the Windows 11 account to the correct user group and press Enter:
Add-LocalGroupMember -Group "Administrators" -Member "NEW-ACCOUNT-NAME"

In the command, change NEW-ACCOUNT-NAME to the account name. In the command above, I added the new account to the Administrators group, granting the user full access to the device. If you want the user to have limited access, add the account to the Users group to make it a “Standard User.”
Once you complete the steps, the new local account will be available on Windows 11 with full access using administrative privileges.
Pureinfotech’s Take
I still think local accounts have a place on Windows 11, even as Microsoft continues pushing users toward Microsoft accounts. For many people, the benefits of the cloud are worth it, especially if you use OneDrive, the Microsoft Store, or multiple Windows devices. However, if you’re setting up a shared family computer, a secondary account, or simply want to keep a computer independent from Microsoft’s online services, a local account remains the better choice.
Over the years, I’ve noticed Microsoft makes this option a little less visible with almost every Windows release, but it hasn’t removed it. The company clearly prefers the Microsoft account experience, yet the operating system still includes several ways to create and manage local accounts, from the Settings app to command-line tools for power users. That’s good news because it gives you the flexibility to choose the account type that best fits how you use your PC.
If you’re creating an additional user account, I’d recommend using the Settings app since it’s the simplest and officially supported method. The command-line and legacy tools are still useful, but they’re better suited for administrators and advanced users who need to create or manage accounts more efficiently.
Do you use a local account or a Microsoft account on Windows 11? Let me know in the comments.
Update July 13, 2026: This guide has been updated to ensure accuracy and reflect changes to the process.
