Installing Windows 10 and Creating a Local User

choubertsprojects

The Best WordPress plugins!

1. WP Reset

2. WP 301 Redirects

3. WP Force SSL

The technology for making video games has evolved dramatically over the years, with graphics and processing power becoming more advanced. Now we are seeing a new type of game being developed that is based on artificial intelligence rather than physical human interfaces: Blockchain-powered games. With blockchain, developers can set up an ecosystem where players can buy in-game items or trade assets from their favorite games within seconds. These smart contracts make it easy to link virtual economies together through exchanges across different platforms and ecosystems of users, which creates compelling gameplay opportunities for both gamers and investors alike.

The “step program” is a free command-line tool that allows users to create and run step programs. The step program can be used in multiple ways, including creating step programs for games, simulations, or other applications.

[Step

Did you know that you may create a local account in Windows 10 and log in without a Microsoft account or an email address? This guide is for you if you’re seeking for a method to accomplish it.

To log in to your PC with Windows 10, you may either create a local user or utilize your current Microsoft account. Let’s have a look at the various methods for establishing a local user account.

This guide will show you how to establish a local user account on Windows 10 in several methods. Let’s get started.

Prerequisites

  • Administrator account on a Windows 10 PC. The Windows 10 Enterprise 21H1 version will be used in this lesson.

Installing Windows 10 and Creating a Local User

Windows Setup is one of the first places you’ll discover to establish a local user account in Windows 10. After the installation, you’ll be prompted to check in using your Microsoft account. Although it seems that you must use a Microsoft account, you may alternatively establish a local account. It’s only that the choice isn’t visible.

  1. In the Sign in with Microsoft work or school account step, instead of logging in with a Microsoft account, choose Domain join.

Showing the Domain Join optionShowing the Domain Join option

2. Click Next after entering a username for the local user account.

The user name column is shown.The user name column is shown.

3. In the following stage, type a password and confirm it. Select Next.

Displaying the password fieldDisplaying the password field

4. Click Next after answering the security questions.

If you forget your login password, you will be asked to answer all three questions in order to reset your password.

Security Questions and AnswersSecurity Questions and Answers

5. Accept the defaults in the next stages. You’ll be signed in using your local account once it’s finished.

Using the Settings App to Create a Local User Account

Now that you know how to establish a local user account during OS installation, let’s look at how to create a local user account thereafter.

1. Right-click on the start menu and choose Settings from the menu that appears.

Right-click the Settings item in the Start menu.Right-click the Settings item in the Start menu.

2. In the Windows Settings box, choose Accounts to view Account settings.

Choosing the Accounts optionChoosing the Accounts option

3. To add a local account, click on Family & other users option at the left panel. Click Add someone else to this PC option to the right and Microsoft’s sign-in screen will appear.

Selecting Add another person to this PC optionSelecting Add another person to this PC option

4. An email address is not required in the sign-in box below. Because you’re establishing a local account, check the box next to I don’t know this person’s sign-in information.

Microsoft sign in screenSign-in screen for Microsoft

5. Select the option to add a user without a Microsoft account.

The option to add a user without a Microsoft account is shown.The option to add a user without a Microsoft account is shown.

6. Type in your username and password. Password security questions will appear automatically as soon as you begin typing. Select each security question and enter your answers, then click Next when you’re finished.

Filling up the local user informationFilling up the data for the local user account

7. Finally, turn off your PC and log back in using the new user account!

Completed creation of a local user accountCompleted creation of a local user account

Using Computer Management to Create a Local User Account

You’ve seen how to establish a local user account in Windows 10 after installation and using the Settings app up to this point. Let’s continue our adventure by using the Computer Management panel to create a local user account.

1. Select File Explorer from the Start menu by right-clicking.

Right-click on the File Explorer option in the Start menu.Right-click on the File Explorer option in the Start menu.

2. Select Manage from the context menu of This PC. The computer management console will open.

Showing the manage option Showing the manage option

Do you need a different method of accessing the computer administration console? Enter compmgmt.msc in the run dialog box. The computer management console will open.

3. Expand the Local Users and Groups tab in the Computer Management interface. Then, under the Users account type, right-click on the Users node and choose New User.

Creating New user... Making a new user…

By executing lusrmgr.msc, you may launch the Local Users and Groups terminal.

4. Fill up the User name, Full name, and Password fields in the create user dialog box. After you’ve finished, click Create and then Close.

Filling up the local user informationFilling up the local user information

As seen below, the local user account has been added to the Users account type folder in the Local Users and Groups area. Now you have a local account that functions similarly to a Microsoft account on Windows.

Verifying the establishment of a local user account in the computer management consoleVerifying the establishment of a local user account in the computer management console

Using the Advanced User Accounts Control Panel to Create a Local User Account

Let’s wrap off this tutorial’s whirlwind tour of generating local Windows 10 user accounts by creating a local user account using the Advanced User Accounts Control Panel, often known as netplwiz.

1. Open the Start menu and enter netplwiz into the search box.

2. Click Add in the User Accounts interface to get to the Microsoft account sign-in screen.

console netplwizconsole netplwiz

3. On the Microsoft account sign-in screen, choose the option Sign in without a Microsoft account (not advised) and then Next.

Option to sign in without using a Microsoft account (not advised)Option to sign in without using a Microsoft account (not advised)

4. Select the Local account option on the Add a user page.

Option to display a local accountOption to display a local account

5. Enter a User name, Password, and Password Hint to help you reset your password.

Filling up the local user informationFilling up the local user information

6. On the last confirmation screen, click Finish.

Finish page for creating a local user accountFinish page for creating a local user account

After that, a new user account will appear in the User Accounts dialog box, as seen below.

Confirmation of the local user account creation.Confirmation of the local user account creation.

Using the Net User Command to Create a Local User Account

The command line is your buddy if establishing a Windows 10 local user account through the GUI isn’t your style or you’re working on some automation routines. Now we’ll utilize cmd.exe to create local user accounts.

Run the command below as an administrator on a command prompt. This command creates a new local account named LocalUser4 (/add) using the password MyPassword!

This command disables all settings such as the user must update their password at the next login, the user cannot change their password, the password never expires, and the account is deactivated.

MyPassword! net user LocalUser4! /add

output of the net user commandoutput of the net user command

Using PowerShell to Create a Local User Account

PowerShell is the next option on the list of methods to establish a local Windows 10 user account.

As an administrator, open the PowerShell console.

How to Use PowerShell as an Administrator

Then, as seen below, execute the New-LocalUser cmdlet.

The Password argument in the New-LocalUser cmdlet cannot be a plain string. To supply a password to the Password argument, use the ConvertTo-SecureString cmdlet to convert your password to a secure string or encrypted string.

The command below encrypts MyComplexPasswordpassword !’s first. The password for a user account named LocalUser6 is then established using the $password variable.

-String MyComplexPassword! -AsPlainText -Force New-LocalUser -Name $password = ConvertTo-SecureString -String MyComplexPassword! -AsPlainText -For -FullName -LocalUser6 -Password -LocalUser6 $password

cmdlet output from New-LocalUsercmdlet output from New-LocalUser

Other arguments supported by the New-LocalUser cmdlet are PasswordNeverExpires and AccountNeverExpires.

Conclusion

You’ve seen a variety of methods for creating local user accounts in Windows 10. Although the GUI options contain more stages than the command line options, when automating a procedure, some people prefer the graphical interface that walks you through the processes over the command line choices.

Which method of creating user accounts, GUI or command line, would you pick based on what you’ve learned in this tutorial? Please let us know in the comments section.

The “step card” is a card that has been designed to help you with the steps involved in completing your tasks. The cards are color coded and numbered for easy reference.

Related Tags

  • step exam
  • step travel
  • step osu
  • step bank
  • step login

Table of Content