How to create local account on Windows 10

Here are the steps to add a new local account on Windows 10 using the Settings app, Command Prompt, and PowerShell.

Windows 10 create local account
Windows 10 create local account
  • The easiest way to create a local account on Windows 10, open Settings > Accounts > Family & other users, click “Add someone else to this PC,” choose “I don’t have this person’s sign-in information,” select “Add a user without a Microsoft account,” and continue with the on-screen directions.
  • Another way to create a local account on Windows 10 is to open Command Prompt (admin) and use the “net user USER_NAME PASSWORD /add” command.
  • Or open PowerShell (admin) and run the “$Password = Read-Host -AsSecureString” and “New-LocalUser “NEW_ACCOUNT_NAME” -Password $Password -FullName “USER_FULL_NAME” -Description “DESCRIPTION”” commands to create a Windows 10 local account.

On Windows 10, you can create a local account on a computer to perform any task. However, unlike using a Microsoft account, your settings, preferences, and files will remain locally for a more secure and private experience.

You will typically see the local account type on organizations and less on home computers, as a Microsoft account is the preferred type for its benefits and sync capabilities. However, it is still an excellent option to create additional accounts or share a device with others.

This guide will teach you the steps to create a Windows 10 local account using the Settings app, Command Prompt, PowerShell, Computer Management, and even Netplwiz (User Accounts). In addition, this guide outlines the steps to set up an administrator account and the steps to delete accounts from your device.

Create local account on Windows 10 from Settings

To create a local user account on Windows 10, use these easy steps:

  1. Open Settings on Windows 10.

  2. Click on Accounts.

  3. Click on Family & other users.

  4. Under “Other users,” click the “Add someone else to this PC” button.

    Windows 10 create local account option

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

    I don't have this person's sign-in information option

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

    Add a user without a Microsoft account

  7. Under the “Create an account for this PC” section, confirm the new Windows 10 local account information.

  8. Create security questions and answers to recover the account if the password is lost.

    User account details and security questions

  9. Click the Next button.

Once you complete the steps, the new local account will be listed under “Other users.” The only caveat is that for security reasons, Windows 10 creates every new account with standard privileges that limits the usability of Windows 10. If you want the user to have more privileges to install the application and make system changes, you will need to change the account type to “administrator.”

Change local account type from Settings

To change the account type from “standard” to “administrator,” use these steps:

  1. Open Settings.

  2. Click on Accounts.

  3. Click on Family & other people.

  4. Under the “Other users” section, select the user account.

  5. Click the “Change account type” button.

    Change account type on Windows 10 settings

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

    Change local account type on Windows 10

  7. Click the OK button.

After you complete the steps, the account will have administrator privileges to install apps and make system changes. 

Delete local account from Settings

To delete a local Windows 10 account and files, use these steps:

  1. Open Settings.

  2. Click on Accounts.

  3. Click on Family & other people.

  4. Under the “Other users” section, select the local account.

  5. Click the Remove button.

    Windows 10 remove account option

  6. Click the “Delete account and data” button to confirm the account deletion.

    Delete account and data on Windows 10

Once you complete the steps, the system will delete the user account and data from the Windows 10 installation.

Create local account on Windows 10 from Command Prompt

If you are comfortable typing command lines, creating a local account and modifying its settings using Command Prompt is a lot faster.

To create a local account from Command Prompt on Windows 10, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to create a new account and press Enter:

    net user USER_NAME PASSWORD /add

    In the command, make sure to change USER_NAME and PASSWORD with the credentials you want to use for the new user account.

  4. (Optional) Type the following command to add the newly created account to the “Administrators” group and press Enter:

    net localgroup administrators USER_ACCOUNT /add

    Create local account command

    In the command, make sure to 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, and you will notice the new user account sitting in the bottom-left corner of the screen. Then select the new user account and sign in.

Change local account type from Command Prompt

To change the account type from “standard” to “administrator” from Command Prompt, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to add the newly created account to the Administrators group and press Enter:

    net localgroup administrators USER_ACCOUNT /add

    Change account type command

    In the command, make sure to replace USER_ACCOUNT with the account name you want to add to the administrators’ group.

Once you complete the steps, the profile will have administrative privileges, which means that the user will be able to install apps, modify system settings, and have unlimited access to the device.

Delete local account on Windows 10 from Command Prompt

To delete a Windows 10 local account from Command Prompt, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to delete the Windows 10 account and press Enter:

    net user USER_ACCOUNT /del

    Delete account command

    In the command, make sure to change USER_ACCOUNT for the account name you want to delete.

After you complete the steps, the user account and files will be removed from the device.

Create local account on Windows 10 from PowerShell

To create a local account with PowerShell on Windows 10, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to temporarily store the password in a secure string inside the “$Password” variable and press Enter:

    $Password = Read-Host -AsSecureString
  4. Type the password for the new Windows 10 account and press Enter.

  5. 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"

    PowerShell create local account

    In the command, make sure to change NEW_ACCOUNT_NAME for the account name and USER_FULL_NAME for the user’s full name. Also, replace DESCRIPTION with the description you want to use for the account.

  6. Type the following command to add the Windows 10 account to the correct user group and press Enter:

    Add-LocalGroupMember -Group "Administrators" -Member "NEW_ACCOUNT_NAME"

    In the command, make sure to change NEW_ACCOUNT_NAME for the account name. In the above command, we add the new account to the Administrators group, which gives the user full access to the computer. However, if you want the user to have limited access, you can add the account to the Users group, making the account a “Standard User.”

Once you complete the steps, Windows 10 will add the new account to the device with full access using administrative privileges. Of course, this is unless you added the account to the “Users” group, in which case the account will be a limited standard account.

Connect new account to a Microsoft account

Using PowerShell should also be possible to create a user account connected to a Microsoft account with this command: New-LocalUser -Name "MicrosoftAccount\[email protected]" -Description "Microsoft account description". However, a bug still returns this message when running the command: “New-LocalUser: Cannot validate argument on parameter ‘Name’. The character length of the 36 arguments is too long. Shorten the character length of the argument, so it is fewer than or equal to “20” characters, and then try the command again.” As a result, the easiest way to get around this problem is to create a local account and then use the Settings app to link it with a Microsoft account.

To link a local account with a Microsoft account, use these steps:

  1. Open Settings.

  2. Click on Accounts.

  3. Click on Your Info.

  4. Click the “Sign in with your Microsoft account instead” option.

  5. Continue with the on-screen directions to connect your account to a Microsoft account.

After you complete the steps, the new account will connect to the specified Microsoft account.

Change local account type from PowerShell

To use PowerShell to change the account type from “standard” to “administrator,” use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to change the account type to administrator and press Enter:

    Add-LocalGroupMember -Group "Administrators" -Member "USER_ACCOUNT"

    Change account type with PowerShell

    In the command, make sure to change USER_ACCOUNT for the account name you want to update.

Once you complete the steps, the local account will be added to the “Administrators” group, giving the user permission to make system changes and install or remove apps.

Delete local account on Windows 10 from PowerShell

To delete an account with PowerShell, use these steps:

  1. Open Start.

  2. Search for Windows PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to delete the user account and press Enter:

    Remove-LocalUser -Name "USER_ACCOUNT_NAME"

    PowerShell delete local account

    In the command, make sure to change USER_ACCOUNT_NAME with the account name you want to remove.

After you complete the steps, the account will be deleted from the computer. However, the user account data will remain. If you want to delete both account and data, the easiest way is to delete the account using the “Accounts” page from the Settings app.

Create local account on Windows 10 from Computer Management 

To create a new local account from Computer Management, use these steps:

  1. Open Start.

  2. Search for Computer Management and click the top result to open the app.

  3. Open System Tools > Local Users and Groups > Users.

  4. Click the Action menu and select the New user option.

    Computer Management new user

  5. Confirm the local account name in the “User name” setting.

    Computer Management create local account

  6. (Optional) Confirm the full name and description of the account.

  7. Create a password for the account.

  8. Clear the “User must change password at next login” option.

  9. Check the “Password never expires” option.

  10. Click the Create button.

  11. Click the Close button.

Once you complete the steps, the Windows 10 local account will be created, and the user will be ready to access the account from the Sign in screen.

These instructions will create a “Standard” local account, if you want to make it “Administrator,” you have to double-click the account and add the “Administrators” group in the “Member Of” tab.

Delete local account on Windows 10 from Computer Management

To delete an account from Computer Management, use these steps:

  1. Open Start.

  2. Search for Computer Management and click the top result to open the app.

  3. Open System Tools > Local Users and Groups > Users.

  4. Right-click the local account and select the Delete button.

    Computer Management delete account

  5. Click the Yes button.

After you complete the steps, the account will be deleted from the computer, but the profile folders and files will remain in the system.

Create local account from netplwiz

To create a local account on Windows 10 from netplwiz, use these steps:

  1. Open Start.

  2. Search for netplwiz and click the top result to open the app.

  3. Click the Add button.

    netplwiz add account

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

    netplwiz sign in without a Microsoft account

  5. Click the Local account button.

    netplwiz local account option

  6. Confirm the Windows 10 local account name in the “User name” setting.

    netplwiz create local account

  7. Create a password for the account.

  8. Confirm a hint for the account to help you remember the password.

  9. Click the Next button.

  10. Click the Finish button.

Once you complete the steps, the local account will be available on your Windows 10 computer.

These instructions will create a “Standard” local account, if you want to make it “Administrator,” select the account, click on Properties, and choose the “Administrator” option from the “Group Membership” tab.

Delete local account on Windows 10 from netplwiz

To delete an account on Windows 10 from netplwiz, use these steps:

  1. Open Start.

  2. Search for netplwiz and click the top result to open the app.

  3. Select the account and click the Delete button.

    netplwiz remove local account

  4. Click the Yes button.

After you complete the steps, the local account will be removed from Windows 10. However, the profile folders and files will remain in the system.

About the author

Mauro Huculak is a Windows How-To Expert who started Pureinfotech in 2010 as an independent online publication. He has also been a Windows Central contributor for nearly a decade. Mauro has over 14 years of experience writing comprehensive guides and creating professional videos about Windows and software, including Android and Linux. Before becoming a technology writer, he was an IT administrator for seven years. In total, Mauro has over 20 years of combined experience in technology. Throughout his career, he achieved different professional certifications from Microsoft (MSCA), Cisco (CCNP), VMware (VCP), and CompTIA (A+ and Network+), and he has been recognized as a Microsoft MVP for many years. You can follow him on X (Twitter), YouTube, LinkedIn and About.me.