PowerShell: List All Possible File Attribute Values
List All Possible values of file Attributes
# list all possible file attributes [System.IO.FileAttributes] | Get-Member -Static -MemberType Properties
# list possible values of a enum type [enum]::GetValues([System.IO.FileAttributes])