October 2017
Intermediate to advanced
440 pages
11h 47m
English
The filesystem access control entry uses the System.Security.AccessControl.FileSystemRights enumeration to describe the different rights that might be granted.
PowerShell is able to list each of the names using the GetNames (or GetValues) static methods of the Enum type:
[Enum]::GetNames([System.Security.AccessControl.FileSystemRights])
MSDN is a better place to find the meaning of each of the different flags:
This is a bit-field, and can therefore be treated in the same way as FileAttributes were earlier in this chapter. The simplest way to present rights is in a comma-separated list. There is a large number of possible ...
Read now
Unlock full access