How to Set File and Folder Permissions in Windows 10 and 11

·
7 min read

Help Desk Geek is reader-supported. We may earn a commission when you buy through links on our site. Learn more.

If you’re getting “Access is denied” on a folder, or you want to prevent other users on your PC from opening specific files, NTFS permissions control both, and you can edit them from any file’s Properties dialog. These steps apply to Windows 10 and Windows 11, including version 24H2.

Understanding Windows File and Folder Permissions

Every file and folder on an NTFS-formatted Windows drive carries an access control list (ACL): a list of users and groups, each with specific permissions either allowed or denied. Windows checks that list every time someone tries to open, edit, or delete the item.

The six standard permissions are:

PermissionWhat it controls
Full ControlRead, write, modify, delete, change permissions, and take ownership
ModifyRead, write, and delete, but not change permissions or ownership
Read & ExecuteOpen and run files
List Folder ContentsSee what’s inside a folder (folders only)
ReadOpen files without editing them
WriteCreate and save files

Deny overrides Allow. If a user has Full Control granted directly but belongs to a group that’s denied Full Control, the Deny wins every time.

Permissions inherit by default. A folder passes its permissions down to everything inside it. That’s why checkboxes in the Security tab are often greyed out: the permission is flowing from a parent folder, not set directly on the item you’re viewing.

One important limitation: Permissions keep casual users out, but any local administrator on the PC can take ownership of a file or folder and grant themselves whatever access they want. For genuine privacy, encrypt your hard drive or use tools like VeraCrypt. Permissions and encryption layer well together.

Cloud files are a separate situation. If your files are in OneDrive or SharePoint, the Security tab won’t control who can access them online. Cloud sharing is managed through the OneDrive or SharePoint interface. NTFS permissions only govern access on this device and on local network shares.

How to View and Change Permissions

Open the Security tab

  1. In File Explorer, right-click the file or folder.
  2. Select Properties.
  3. Click the Security tab.
Windows 11 File Explorer with a folder right-clicked and Properties highlighted in the context menu

The Group or user names panel lists every account with an entry on this item. Click any name to see its current permissions in the panel below.

Windows 11 folder Properties dialog showing the Security tab, with the Group or user names list at the top and Allow and Deny permission checkboxes below

Edit permissions for an existing user or group

  1. On the Security tab, click the user or group you want to change.
  2. Click Edit.
  3. In the Permissions for [name] dialog, check or uncheck the Allow or Deny boxes.
  4. Click Apply, then OK.
Permissions dialog for a Windows 11 folder showing Allow and Deny checkboxes for Full control, Modify, Read and execute, List folder contents, Read, and Write

If the checkboxes are greyed out, the permissions are inherited from a parent folder. You’ll need to disable inheritance before you can edit them. See the section below.

How to Add or Remove a User or Group

Add a user or group

  1. On the Security tab, click Edit.
  2. Click Add.
  3. In the Enter the object names to select field, type the username or group name.
  4. Click Check Names to confirm it resolves correctly.
Select Users or Groups dialog showing the object name entry field, Check Names button, and OK button
  1. If you don’t know the exact name, click Advanced, then Find Now to browse every local user and group.
Advanced Select Users or Groups dialog with Find Now clicked, showing a list of local users and groups in the search results panel
  1. Click OK to add the account to the list.
  2. Select the new entry and set its Allow or Deny permissions.
  3. Click Apply, then OK.

Use Deny sparingly. Applying it to a group blocks every member, even accounts that have an explicit Allow entry elsewhere.

Remove a user or group

  1. On the Security tab, click Edit.
  2. Select the user or group you want to remove.
  3. Click Remove, then Apply, then OK.

Remove is greyed out for inherited entries. Disable inheritance first, then come back and try again.

Permissions dialog for a Windows 11 folder with an inherited entry selected and the Remove button greyed out

How to Disable Inheritance

Disabling inheritance cuts the link to the parent folder, so your custom permissions won’t be overwritten from above.

  1. Right-click the folder, select Properties, then click the Security tab.
  2. Click Advanced.
Windows 11 folder Properties dialog on the Security tab with the Advanced button highlighted at the bottom
  1. In the Advanced Security Settings dialog, click Disable inheritance.
Advanced Security Settings dialog in Windows 11 showing the permission entries list and the Disable inheritance button at the bottom
  1. A dialog asks what to do with the existing inherited entries. Choose one:

Convert inherited permissions into explicit permissions on this object: keeps everything as-is but makes every entry editable. Pick this if you’re not sure. – Remove all inherited permissions from this object: clears the list entirely. Only choose this if you’re building permissions from scratch.

Windows 11 dialog offering the choice to convert inherited permissions to explicit permissions or remove all inherited permissions from the object
  1. Click Apply, then OK.

Every entry is now editable. Nothing will be greyed out.

How to Take Ownership of a File or Folder

If the permissions dialog itself is locked, or you’re hitting “Access is denied” even with admin rights, the file is probably owned by a system account like TrustedInstaller. Taking ownership puts you in control.

  1. Right-click the file or folder, select Properties, then click the Security tab.
  2. Click Advanced.
  3. At the top of the Advanced Security Settings dialog, click Change next to the current owner name.
Advanced Security Settings dialog in Windows 11 showing TrustedInstaller or SYSTEM as the current owner with the Change link highlighted next to the owner name
  1. Type your username, click Check Names, then OK.
  2. To extend ownership to every subfolder and file inside, check Replace owner on subcontainers and objects.
  3. Click Apply, then OK.
Advanced Security Settings dialog after ownership transfer showing the current user account as the new owner with the Replace owner on subcontainers and objects checkbox checked
  1. Close Properties and reopen it. The Security tab will now let you edit permissions freely.

After taking ownership, grant yourself Full Control under the permissions list so you can read, write, and manage the item going forward.

How to Check Effective Access

Effective Access shows the combined, real-world result of all permission entries for a specific account. It’s the fastest way to confirm whether a Deny entry is actually blocking someone. No guesswork.

  1. Right-click the file or folder, open Properties, then the Security tab.
  2. Click Advanced, then select the Effective Access tab.
  3. Click Select a user, type the username, click Check Names, then OK.
  4. Click View effective access.
Advanced Security Settings Effective Access tab in Windows 11 showing a selected user account with green checkmarks for allowed permissions and red X icons for denied permissions

Green checkmarks mean the user has that right. A red X means they don’t, regardless of what individual Allow entries say. If you have conflicting permissions and aren’t sure which one wins, this tab resolves it definitively.

Common Permission Problems

“Access is denied” when opening a file or folder The file is owned by a different account. Take ownership using the steps above, then grant yourself Full Control.

The Security tab is missing or greyed out Your account doesn’t have administrative rights, or a device policy is hiding the tab. Right-click File Explorer and choose Run as administrator. On a managed device, check with your IT administrator.

Permissions keep reverting after you save Stuck in a loop where your changes disappear? Inheritance from a parent folder is almost certainly the reason. Disable inheritance on the item you’re configuring, and the changes will finally stick. On domain-joined PCs, Group Policy can also reset permissions on a schedule. That’s a fix your IT team needs to handle.

Account names look strange (user@domain.com or MicrosoftAccount\\user@example.com) Normal if you sign in with a Microsoft account or a work/school (Azure AD) account. Permissions work exactly the same way. Grant or deny access to that account just as you would a local user.

For Power Users: icacls

Editing permissions one folder at a time gets tedious when you have many to configure. icacls handles bulk changes from the command line. To grant a user Full Control over a folder and everything inside it:

icacls "C:\MyFolder" /grant Username:(OI)(CI)F /T

Run Command Prompt as administrator.

Conclusion

For the typical case, blocking someone on a shared PC from a specific folder, the Security tab in Properties is all you need. If the checkboxes are greyed out, disable inheritance first. If everything is locked because of ownership, take ownership and then set your permissions.

Permissions reverting is the most confusing part, but inheritance explains it nearly every time. Disable it on the item directly, save your changes, and they’ll finally stay where you put them. Worth getting right the first time.