Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Enumerate the identity reference SIDs
- # This supports another script that enumerates permissions on Windows folders where some folders or files might have S-1-15-3* SIDs.
- # Called Capability Security Identifiers (SIDs), these are used in Windows 10 and later for fine-grained access control,
- # particularly in relation to Universal Windows Platform (UWP) apps and modern Windows features.
- $acl = Get-Acl "C:\Users\jimbob\Favorites"
- $acl.Access | Where-Object {$_.IdentityReference -match "S-1-15-3"} | Format-List *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement