How To Create A Guest Account In Windows 11
If You Want To Share Your Computer With Someone Securely, You Must Create A Guest Account With Limited Access. In This Article, We Will Teach You How To Create A Guest Account In Windows 11.
The guest account in older versions of Windows allowed users to create a minimal environment so that different people could use it safely to run programs or access the Internet. Still, an account called Guest, created with one click on older Windows, is no longer directly available on Windows 10 and 11.
However, creating a limited user account with guest account features in Windows 11 using settings, Computer Management, command line, and even PowerShell commands are still possible. In this tutorial, you will learn the steps of creating a temporary guest account on PCs running Windows 11.
Create a guest account using the settings
To create a guest account in Windows 11, you must do the following steps:
- Enter the Windows settings section.
- Click on Accounts.
- Right-click on the Family & other users page.
- In the Other User’s selection, click the Add account button.
- Click Add a user without a Microsoft account. In the new window that opens, click I do not have this person’s sign-in information.
- You must now enter the name you want for the guest account, For example, Visitor. Although the guest account is obsolete in Windows 11, the Guest name is still reserved and can not be used as a guest account.
- Please enter a password for the account in the Make it secure field.
- In case you forget your password section, specify three security questions and answer them to enable the ability to recover the password in case of forgetting.
- Click the Next button.
After completing the above steps, a restricted account will create. The last thing you need to do is log out and log in to your guest account.
Although it is always possible to make a standard account (instead of an administrator) with more limited authority, the computer can be available to the guest user. Still, to apply precisely the conditions of a guest account in the created account, you can go one step further and Set the Guest account group or Guest to have more restrictions.
However, since it is impossible to change user groups from within the settings, you must use the Computer Management program or command line.
Add an account to the guest user group.
It is To add an account to the guest group via Computer Management, and the following steps must perform:
- Open the Start menu.
- Search for Computer Management and click on the first result to open the program.
- Go to System Tools> Local Users and Groups> Users from the navigation menu on the left.
- Right-click on the account you created in the pre-made section and select Properties.
- Click the Member Of tab and then the Add button.
- Click the Advanced button.
- Click the Find now button.
- Select the Guests group.
- Click the OK button and the OK button again.
- In the Visitor Properties window, select the Users group.
- Click the Remove button.
- Click the Apply button and then OK.
After completing the steps, we will place the newly created account in the group of guest accounts.
Create a guest account using Computer Management
To set up a guest account through Computer Management:
- Open the Start menu.
- Search for Computer Management and click on the first result to open the program.
- Go to System Tools> Local Users and Groups> Users from the navigation menu on the left.
- From the toolbar above, click the Action menu and select New User.
- Enter the account name (for example, Visitor) in the User name field and set a password.
- Disable the User must change the password at the next logon option.
- Click the Create button.
- Right-click on the created account and select Properties.
- Go to the Member Of tab and then click the Add button.
- Click the Advanced button.
- Click the Find now button and select the Guests group.
- Click the OK button and the OK button again.
- In the Visitor Properties window, select the Users group.
- Click the Remove button.
- Click the Apply button and then OK.
After completing these steps, you will create an account with special user permissions.
Create a guest account using the command line
To set up and create a guest account in Windows 11 using the command line:
- Open the Start menu.
- Type cmd or Command Prompt, right-click on the first result and then select Run as administrator.
- Enter the following command and then press Enter on the keyboard; Note that the phrase Visitor mentioned in the commands is the name of the account, and you can replace it with another name of your choice:
net user Visitor /add /active:yes
- To set a password for this account, type the following command and press Enter. If this is a temporary account, you do not need to set a password for it, and you can skip this step by pressing the Enter key twice.
net user Visitor *
- Enter the following command to remove the new account from the Users group, then press Enter:
net localgroup users Visitor /delete
- Enter the following command to add a new account to the Guests user group and press Enter:
net localgroup guests Visitor /add
After completing the steps, the account will appear on the login page.
Create a guest account using PowerShell
Use these steps to create a guest account with PowerShell commands in Windows 11:
- Open the Start menu.
- Search for PowerShell, then right-click on the result and select Run as administrator.
- To create a guest account, you must first specify the account password using the following command:
$GuestPassword = Read-Host -AsSecureString
- Enter the desired password in the area where the cursor flashes.
- Now to create an account, type the following command and then press Enter; Note that the phrase Visitor mentioned in the commands is the name of the account, and you can replace it with another name of your choice:
New-LocalUser “Visitor” -Password $GuestPassword
- To add a created account to the Guest group, use this command:
Add-LocalGroupMember -Group “Guests” -Member “Visitor”
After completing the steps, PowerShell will make a guest account to share with a Windows 11 PC.
These steps are used to temporarily set up an account to share the device with a guest user. If someone wants to use your machine regularly, you recommend creating a standard charge for each User using a Microsoft or offline version.