March 29th, 2013

PowerTip: Use PowerShell to Find Non-Inherited Access to a Folder

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to find non-inherited access rights to a folder.

Hey, Scripting Guy! Question How can I find non-inherited access rights to a folder by using Windows PowerShell?

Hey, Scripting Guy! Answer Use the Get-Item cmdlet to select the folder, and pipe it to the Get-ACL cmdlet. Choose the Access property, and filter the results based on an inheritance flag equal to none. This technique is shown here for the C:\fso folder (? Is an alias for the Where-Object).

(Get-Item c:\fso | get-acl).Access | ? inheritanceflags -eq ‘none’

 

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.

Feedback