Creating Windows 10 Guest Account the Easy Way (2024)

XFacebookLinkedIn

Has anyone ever asked to use your computer? Would you let them use your user account knowing that they can access everything? Good thing there’s a solution – use a Windows 10 guest account.

In this article, you’re going to learn all the ways to create a Windows 10 guest account. You’ll learn how to create restricted accounts with the GUI and PowerShell and you’ll even see how to convert accounts, let’s get started!

Prerequisites

Before going any further, below are some prerequisites. You’ll need these requirements to follow along with the examples in this article.

  • You must use a Windows 10 computer. The examples in this article use Windows 10 Home.
  • Windows PowerShell 5.1 – This version already ships with Windows 10. If you already have PowerShell 7 installed, you can use that, too.

Related: How to Check your PowerShell Version (All the Ways!)

When you’ve settled the requirements, then you’re ready to start making Windows 10 guest accounts.

Creating a Windows 10 User Account using the Windows System Settings

In previous Windows versions, you have the option to enable the built-in guest account. However, in Windows 10 version 1607, the built-in guest account is usable only in Shared PC mode, which is not available by default.

Don’t worry, though; there’s still a way to create a user account that simulates the Windows 10 guest account.

In this section, you’ll learn how to set up a new local guest user account on your Windows 10 PC with the least number of steps possible using the graphical user interface (GUI).

The two main steps to create a Windows 10 guest account are as follows:

  1. Create a new standard user account. Newly created accounts are standard accounts by default.
  2. Modify the new user’s group membership, effectively converting the standard user account to a guest account.

Read on to learn how to create a standard Windows account, underpinning the guest account.

Creating a New Standard Account

The following steps will walk you through creating a standard account in Windows, a precursor to creating a visitor account.

  1. First, on your Windows desktop, right-click on the Start menu, or press the WIN+X shortcut on your keyboard to bring up the context menu.

2. Click on Run to open the Run dialog.

3. Once the Run dialog appears, type control userpasswords2 inside the Open text entry section.

4. Click OK or press Enter to open the User Accounts window, where you will see a list of existing user accounts on your computer.

5. In the screenshot below, click Add to add a new user.

Creating Windows 10 Guest Account the Easy Way (2)

6. The next window asks, How will this person sign in?. Because your goal is to create a local user, you do not need to enter an email address. Instead, click on the Sign in without a Microsoft account link at the bottom of the window.

Creating Windows 10 Guest Account the Easy Way (3)

7. The differences between a Microsoft account and a local account are listed in the Add a user window. As you are creating a local user account, click on the Local account button.

Creating Windows 10 Guest Account the Easy Way (4)

8. In the User name box, type in the account name you want to create. Although this article uses the name Visitor, choose a descriptive name for your guest account. Adding a password is optional, but doing so will increase the guest accounts security. Click Next to finalize the account.

Creating Windows 10 Guest Account the Easy Way (5)

Click on the Finish button to exit the Add a user window.

Creating Windows 10 Guest Account the Easy Way (6)

After creating the standard user account, you’ll be directed back to the User Accounts window. You’ll find that there is now an additional user listed, Visitor, as you can see in the screenshot below.

Creating Windows 10 Guest Account the Easy Way (7)

By default the Visitor account is a member of the Users group. As this account is a standard user, you’ll now need to convert the user account to a guest. Read on to learn how to convert a standard account into a guest account!

Converting the Standard User Account to a Guest User Account

Your newly created Visitor account is a Standard account. A standard account has many more permissions than a guest account. Let’s now convert a standard user account to a guest user account to remove these extra permissions. Assuming you’re still in the User Accounts window:

  1. First, click to highlight the Visitor account in the User Accounts window.
  2. Once selected, click on Properties.
  3. When the Visitor account properties window appears, click on the Group Membership tab.
  4. On the Group Membership tab, you’ll see several different account types. The Guest account type is not one of the displayed options. Click the radio button next to Other, click on the dropdown selection box, and choose the Guests option.
  5. Finally, click on the OK button to finalize your chosen user account membership.
Creating Windows 10 Guest Account the Easy Way (8)

Great! You have successfully converted a standard user account to a guest user account type. As you can see in the image below, the group membership changed from Users to Guests.

Creating Windows 10 Guest Account the Easy Way (9)

What if you need to remove the guest account? Read on to learn how you can do so via the User Accounts window.

Removing the Guest Account using the GUI

Guest accounts are typically used temporarily. If you no longer need a guest account you can remove the account.

To delete the guest account, highlight the guest account from the User Accounts list and click on Remove, as shown in the screenshot below.

Creating Windows 10 Guest Account the Easy Way (10)

As you can see in the image below, you will receive a warning message confirming the removal operation. Click Yes to confirm removing the Windows 10 guest account.

Creating Windows 10 Guest Account the Easy Way (11)

As is often the case, there are many ways to create a user account in Windows, read on to learn how to do so using the command prompt.

Adding a Windows 10 Guest Account using the Command Prompt

Using the command prompt is a potentially faster method of creating guest accounts than using the GUI. In this example, you’ll use the command prompt to create a Windows 10 guest account.

  1. Create a local user named Visitor.
  2. Remove the Visitor account as a member of the Users group.
  3. Add the Visitor account as a member of the Guests group.

Creating a Guest Account using Only Three Lines of Commands

Originating in earlier versions of Windows, the net user commands allow adding, removing, and modifying user accounts on a computer via the command-line.

In this section, you’ll use the net user command to create a user account and then convert that user account into a guest user. To start creating a guest account, follow the below steps.

First, open an elevated command prompt by entering the text, Command Prompt, in the Windows search box. Once the Command Prompt application is shown in the search result, highlight the Command Prompt application, and click the Run as administrator option as shown below.

Creating Windows 10 Guest Account the Easy Way (12)

Next, it is easiest to copy and paste each command below into the opened command prompt window. The /active:yes parameter will also enable the account, which would otherwise be disabled by default.

net user Visitor /add /active:yesnet localgroup users Visitor /deletenet localgroup guests Visitor /add
Creating Windows 10 Guest Account the Easy Way (13)

Just like that, you’ve created a new Windows 10 guest account using the command prompt. Read on to learn how to remove a user account using the command prompt as well.

Removing the Guest Account using the Command Prompt

When you no longer need a guest account, you can delete the guest account in an elevated command prompt. To remove the guest account, use the command below, substituting Visitor for the user account to remove.

net user Visitor /delete

The deletion process will not prompt for a confirmation! You will only see a command completion message upon account removal.

Adding a Windows 10 Guest Account using PowerShell

In this section, you’ll learn an alternative to the net commands using the PowerShell cmdlets, New-LocalUser and Add-LocalGroupMember to provision a new guest account in a single line of code!

  1. To create a guest account open an elevated PowerShell session. To run PowerShell as an administrator, right-click on the Start menu and click on Windows PowerShell (Admin).

Related: How to Run PowerShell as Administrator

Creating Windows 10 Guest Account the Easy Way (14)

2. Next, the command below will create a new local user account named Visitor without a password via the NoPassword parameter. The resulting object is passed into the Add-LocalGroupMember cmdlet adding the account into the Guests group.

You will not receive a confirmation unless there was an error in the process. In this case, no news is good news.

Related: Back to Basics: Understanding PowerShell Objects

New-LocalUser -Name Visitor -NoPassword | Add-LocalGroupMember -Group Guests

3. To confirm whether the command successfully created the Visitor account, use the Get-LocalGroupMember command below. The below command looks for a group member called Visitor in the Guests group.

Get-LocalGroupMember -Group Guests -Member Visitor

The screenshot below shows the actual output when running the commands in PowerShell. As you can see, the Get-LocalUser command returned the user named Visitor, which indicates that you’ve successfully created a new guest account.

Creating Windows 10 Guest Account the Easy Way (15)

Removing the Guest Account using PowerShell

As in the previous examples, when you need to remove a Windows 10 guest account, you can use PowerShell. To remove a user, use the Remove-LocalUser cmdlet in an elevated PowerShell session. To remove the guest account named Visitor, run the command below in PowerShell.

Remove-Localuser -Name Visitor

Be aware that you will not receive a confirmation prompt when running Remove-LocalUser!

To verify that the Visitor account has been removed, run the Get-LocalUser command as shown below. The resulting error will indicate that the user account no longer exists.

Get-LocalUser -Name Visitor
Creating Windows 10 Guest Account the Easy Way (16)

Next Steps

Allowing guests to use your computer need not be risky with a Windows 10 guest account. In this article, you’ve learned how to use the GUI, the command prompt, and PowerShell to create a new Windows 10 guest user account.

To further apply what you’ve learned here, try to automate the Windows 10 guest account creation process. Create a PowerShell script that asks for the name of the new guest user!

Related: Read-Host: A Great Way to Get Input to your PowerShell Scripts

Creating Windows 10 Guest Account the Easy Way (2024)

FAQs

How to create a new guest account on Windows 10? ›

You can use the Settings app to add a user account.
  1. In the Settings app on your Windows device, select Accounts > Other user or use the following shortcut: ...
  2. Under Add other user , select Add account.
  3. Enter the account information for this person to sign in: ...
  4. Follow the instructions to finish setting up the account.

What is the default password for Windows 10 guest? ›

A guest account provides access to the computer for any user who does not have a user account on the computer. By default you do not require any password or, you can not create any password for this account either.

Why is my guest account not working on Windows 10? ›

The Guest account is disabled by default in Windows 10. However, guest is a reserved word, so you should create a new account under a different name (such as "Visitor") then put it in the guests localgroup: Open command prompt window as administrator. net user Visitor /add /active yes.

What is the purpose of the guest account in Windows? ›

The guest account lets other people use your computer without being able to change PC settings, install apps, or access your private files. Do note however that Windows 10 no longer offers a Guest account to share your PC, but you can create a restricted account to emulate that kind of functionality.

Can I create a second account on Windows 10? ›

You can create two separate accounts on a single Windows PC. Just open the Windows settings > Accounts > Family and other users and select “Add someone else to this PC”. Then, Windows will walk you through the setup of a new user account. You can choose to add a Microsoft account, or not : it's up to you.

How do I reset my guest account on Windows 10? ›

reset guest password
  1. Click the Windows key, then search and open Local Users and Groups.
  2. Open the Users folder.
  3. Right-click the Guest entry. On the menu, select Set Password.
  4. Select Proceed, then type in the new password.
  5. Click OK to save the changes.
Mar 23, 2017

How do I remove the administrator password from my guest account Windows 10? ›

  1. Restart your computer and press F8 key repeatedly until you see the Advanced Boot Options menu.
  2. Click "Safe Mode with Command Prompt."
  3. In the Command Prompt window, type net user administrator /active:yes and press Enter.
  4. Restart the computer and log in as the administrator.
Jan 15, 2024

How to open Windows 10 without password? ›

1. Type netplwiz in the Start menu search bar, then click the top result to run the command. 2. Uncheck the tick from the box next to Users must enter a user name and password to use this computer and hit Apply.

What is the universal password for Windows 10? ›

Windows 10 doesn't have a default administrator password. Instead, the default password is unset, which disables the account. You can use a different account with Administrator privileges to set a password for the administrator account.

How to activate Windows 10 guest account? ›

Go to “Control Panel > User Accounts > Manage Accounts > Guest”. Select “Turn on”.

What is the difference between user and guest in Windows 10? ›

As per descriptions; Users are prevented from making accidental or intentional system-wide changes and can run most and Guests have the same access as members of the Users group by default, except for the Guest account which is further restricted.

How to make a guest account on Windows 10 without logging in? ›

Under Other users, click on Add account (or Add someone else to this PC on Windows 10).
  1. Click on I don't have this person's sign-in information.
  2. Click on Add a user without a Microsoft account.
  3. Enter the guest user name. ...
  4. The new user account will appear alongside other accounts.

What are the two types of guest accounts? ›

Guest folios: accounts assigned to individual persons or guestrooms. Master folios: accounts assigned to more than one person or guest room; usually reserved for group accounts. Non-guest (or semi-permanent) folios: accounts assigned to non-guest businesses or agencies with charge privileges at the hotel.

What is the advantage of a guest account? ›

One of the best benefits for consumers: it takes less time. Since they aren't required to create store accounts, this omission reduces friction in the purchase process and helps users convert faster.

How to create a guest user account in Windows 10? ›

Guest Account Windows 10
  1. Select the Start button, select Settings > Accounts and then select Family & other users. ...
  2. Select Add someone else to this PC.
  3. Select I don't have this person's sign-in information, and on the next page, select Add a user without a Microsoft account.
Aug 6, 2020

How do I create a duplicate user account in Windows 10? ›

Best Answered by
  1. Enter the Control Panel by pressing the Windows + R keys simultaneously.
  2. Find and select "System" among the option.
  3. Click "Advanced System Settings" from the left panel.
  4. Click the "Settings…" button under the "User Profiles" tab.
  5. Select the profile you want to copy, and click the "Copy to…" button.
Dec 19, 2022

How do I find my guest account on Windows? ›

To sign in or switch to the Guest account, click on your user account name on the Start menu (top-left of the Start) and then click on the Guest account to switch the account.

How to login with a local account instead of domain account in Windows 10? ›

In Windows 10 Home or Pro, go to Settings > Accounts and click the link for Sign in with a local account instead. Windows asks if you're sure you want to sign in with a local account. Click Next and enter the PIN or password you use to sign into Windows.

How to give permission to a guest user in Windows 10? ›

To specify which users or groups can access a file or folder:
  1. Right-click the file or folder you want to set permissions for and select "Properties".
  2. Navigate to the "Security" tab.
  3. Click on the "Edit" button to change permissions.
  4. In the permissions window, select a user or group from the list.
Oct 11, 2023

Top Articles
Latest Posts
Article information

Author: Moshe Kshlerin

Last Updated:

Views: 6274

Rating: 4.7 / 5 (57 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Moshe Kshlerin

Birthday: 1994-01-25

Address: Suite 609 315 Lupita Unions, Ronnieburgh, MI 62697

Phone: +2424755286529

Job: District Education Designer

Hobby: Yoga, Gunsmithing, Singing, 3D printing, Nordic skating, Soapmaking, Juggling

Introduction: My name is Moshe Kshlerin, I am a gleaming, attractive, outstanding, pleasant, delightful, outstanding, famous person who loves writing and wants to share my knowledge and understanding with you.