I would like to have the value of "access mask" and not in text: If I did:
Get-Acl .\MyFolder | % {$_.Access}
FileSystemRights : WriteAttributes, ReadAndExecute, Synchronize
AccessControlType : Allow
IdentityReference : EU\Test
IsInherited : False
InheritanceFlags : ContainerInherit
PropagationFlags : None
The value of FileSystemRights
is a text, and I would like a number.
The "access mask" is: technet
Do you know a means to have the value of the "access mask"?