Let’s watch this video. then you might able to do.
First, create a user account.
In Windows 10, I think you go to Settings, then Accounts. There should be a section for Family & other users. Maybe there’s an option to add someone else. But wait, there are different types of accounts: Microsoft accounts and local accounts.
The user might want to create a local account without a Microsoft email. How do you do that? I think there’s an option during the setup that says “I don’t have this person’s sign-in information,” which allows creating a local account.
Once the account is created, set permissions. Permissions could refer to user privileges, like making them an administrator or a standard user. Or maybe file and folder permissions. The question isn’t clear, but since it’s about user accounts, probably about the account type (admin vs standard).
But if they need more detailed permissions, like accessing specific folders, that’s done through right-clicking the folder, going to Properties, Security tab, and modifying permissions there. But maybe the main focus is on account level permissions.
Wait, the user might also be asking about setting permissions for apps or system settings. For example, limiting a user from installing software. That’s controlled by their account type. Standard users can’t install software for all users,
I think. So changing the account type from standard to admin would give them more permissions.
Another way is through Computer Management. Using lusrmgr.msc to create users and set groups. Adding a user to the Administrators group would give them admin rights. But maybe the user isn’t familiar with Computer Management, so better to stick to GUI methods.
Also, there’s the netplwiz command, which brings up User Accounts dialog with advanced options. Not sure if that’s necessary here.
So, step-by-step: Go to Settings > Accounts > Family & other users. Add a user, either Microsoft or local. Then set account type as admin or standard.
For folder permissions, right-click the folder, Properties > Security > Edit permissions. Maybe add the user and set read/write/modify.
Wait, but sometimes you have to take ownership first if you’re an admin. But that’s more advanced. Maybe the user just needs basic permissions.
Also, in the User Accounts control panel, there’s “Change account type” which does the same as the Settings app.
I should also mention the command line methods, like using net user commands. For example, “net user username password /add” to create a user, then “net localgroup administrators username /add” to make them admin. But the user might prefer GUI steps.
Potential mistakes: Forgetting to specify creating a local vs Microsoft account. Or not explaining how to switch the account type after creation. Also, when setting folder permissions, ensuring the user has the right access levels.
I should check if the steps are accurate. Let me mentally go through the Settings: Start > Settings (gear icon) > Accounts > Family & other users > Add someone else. Then, for local account,
select “I don’t have this person’s sign-in information” > “Add a user without a Microsoft account”. Then enter username, password, security questions. Then after creation, click on the account and change account type to Administrator.
For folder permissions: Right-click folder > Properties > Security > Edit > Add the user > Check permissions (Full control, Modify, etc.). Apply and OK.
Yes, that seems right.
Also, maybe mention User Account Control (UAC) settings, but that’s more about admin prompts. Not sure if needed here.
So the answer should have two main parts: creating the user account (both Microsoft and local options), setting account type, and then setting folder permissions if needed.
Also, perhaps a note on command line methods for more advanced users.
(Due to technical issues, the search service is temporarily unavailable.)
Creating a User Account in Windows 10
Method 1: Using Settings (GUI)
1. Open Settings:
o Press Windows + I to open Settings.
o Go to Accounts > Family & other users.
2. Add a User:
o Under Other users, click Add someone else to this PC.
o Choose:
ď‚§ Microsoft Account: Enter the email/phone linked to a Microsoft account.
 Local Account: Select I don’t have this person’s sign-in information > Add a user without a Microsoft account. Enter a username, password, and security questions.
3. Set Account Type:
o After creation, click the new account under Other users.
o Select Change account type and choose:
ď‚§ Administrator: Full system control.
ď‚§ Standard User: Limited privileges.
________________________________________
Setting Permissions
1. Account-Level Permissions (Admin vs. Standard)
• Use the steps above to toggle between Administrator and Standard User in Settings > Family & other users.
2. Folder/File Permissions
1. Right-click the folder/file > Properties > Security tab.
2. Click Edit > Add.
3. Enter the username (e.g., John) > Check Names > OK.
4. Select the user and check permissions (e.g., Modify, Read & execute).
5. Click Apply > OK.
3. Advanced Permissions via Command Line
• Create a User:
cmd
Copy
net user [Username] [Password] /add
• Make User an Admin:
cmd
Copy
net localgroup administrators [Username] /add
