NTFS vs Share Permissions

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:27 PM on 8/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

What does the basic Give access to interface conceal?

some of the complexity of the Windows NTFS versus share permissions system

2
New cards

When do share-level permissions apply?

when a folder is accessed over a network connection

3
New cards

What do share-level permissions not protect against?

a user who is logged on locally to the computer hosting the shared resource

4
New cards

When are NTFS permissions applied?

for both network and local access

5
New cards

What can NTFS permissions be applied to?

folders and individual files

6
New cards

What is better practice than assigning NTFS permissions directly to user accounts?

assign permissions to security groups and make users members of appropriate groups

7
New cards

Which tab is used to configure NTFS permissions for a file or folder?

the Security tab

8
New cards

What does the Security tab show?

the ACL applied to the file or folder

9
New cards

What does each access control entry (ACE) assign?

a set of permissions to a principal

10
New cards

What can a principal be?

a user account or a security group

11
New cards

What do Read/list/execute permissions allow?

open and browse files and folders and run executable files

12
New cards

What does Write allow?

create files and subfolders and append data to files

13
New cards

What does Modify allow?

write permission plus the ability to change existing file data and delete files and folders

14
New cards

What does Full control allow?

all other permissions plus the ability to change permissions and change the owner of the file or folder

15
New cards

How can each permission be configured?

as allow or deny

16
New cards

What takes effect if permissions are not defined?

implicit deny

17
New cards

What are permissions that are defined known as?

explicit

18
New cards

What are permissions that take effect because they are not defined known as?

implicit

19
New cards

How does Windows determine the most effective permissions when a user has multiple permissions?

by analyzing the permissions obtained from different accounts

20
New cards

What is the order of permissions from most restrictive to least restrictive?

Explicit Deny, Explicit Allow, Implicit Deny, Implicit Allow

21
New cards

What does Windows default to if permissions conflict?

the most restrictive permission

22
New cards

If a user gets Read from Sales and Modify from Managers, what is the effective permission?

Modify

23
New cards

What error does Windows display if a user tries to view or save a file with insufficient permissions?

Access Denied

24
New cards

What command can configure file and folder permissions with PowerShell?

icacls

25
New cards

What does icacls allow you to do?

adjust inheritance, remove existing permissions, and grant new permissions for users and groups

26
New cards

What does "Path" specify in icacls?

the file or folder whose permissions you are modifying

27
New cards

What does /inheritance:d do?

disables permission inheritance from the parent folder so the item’s permissions can be managed independently

28
New cards

What does /remove:g GroupOrUser do?

removes all granted (allow) permissions for the specified user or group from the access control list

29
New cards

What does /grant GroupOrUser:(OI)(CI)F do?

grants permissions to a user or group

30
New cards

What does (OI) mean in an icacls grant?

Object Inherit; permissions apply to files within the folder

31
New cards

What does (CI) mean in an icacls grant?

Container Inherit; permissions apply to subfolders within the folder

32
New cards

What does F mean in an icacls grant?

Full control permission

33
New cards
What issue must be considered when folders are secured using NTFS and/or share permissions?
inheritance
34
New cards
What is the default inheritance behavior for NTFS permissions on a folder?
files and subfolders created under the folder automatically inherit the folder’s NTFS permissions
35
New cards
Where can default NTFS inheritance behavior be disabled?
Security Advanced Permission tab
36
New cards
What type of permissions always override inherited permissions?
directly assigned permissions (explicit permissions)
37
New cards
Do explicit permissions override inherited deny permissions?
yes
38
New cards
In the example, if a parent folder denies write but a child file grants write directly, what is the effective permission?
allow write access on the file object
39
New cards
When do share permissions protect a resource?
when it is accessed across the network
40
New cards
When do NTFS permissions apply?
locally and across the network
41
New cards
Where are share permissions set?
at the root of the share
42
New cards
How do share permissions affect files and subdirectories?
all files and subdirectories inherit the same permissions
43
New cards
Why is NTFS inheritance used in combination with share permissions?
to provide greater flexibility, such as placing more restrictive permissions at lower levels in the directory structure
44
New cards
If both share and NTFS permissions apply to the same resource over the network, which applies?
the most restrictive
45
New cards
If Everyone has Read share permission and Users has Modify NTFS permission, what is the effective permission for a Users member over the network?
Read
46
New cards
Which file system can only be protected using share permissions?
FAT32
47
New cards
How are shared folder permissions most often set because the interaction is complex?
Full Control for either the Everyone or Authenticated Users default groups
48
New cards
How are effective permissions most often managed?
using NTFS security
49
New cards
What does the Authenticated Users system group exclude?
guests
50
New cards
What wins when share and NTFS permissions conflict?
the most restrictive permission