Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to See Who Can Access Folder

$
0
0

Summary: Use Windows PowerShell to see who has access to a folder.

Hey, Scripting Guy! Question How can I use Windows PowerShell to see who has access rights to a folder?

Hey, Scripting Guy! Answer Use the Get-Acl cmdlet, specify the folder, and look at the access property, for example:

(Get-Acl c:\fso).Access

 


Viewing all articles
Browse latest Browse all 3333

Trending Articles