# Get ACL for Files and Folders

The first PowerShell cmdlet used to manage file and folder permissions is `get-acl`; it lists all object permissions. For example, let’s get the list of all permissions for the folder with the object path `\\fs1\shared\sales`

```none
Get-acl \\fs1\shared\sales | Format-List
```

<div class="code-toolbar" id="bkmrk-copy-24"><div class="toolbar"><div class="toolbar-item">  
</div></div></div>![get-acl.png](https://wiki.mutschlerhome.com/cheetsheets/get-acl.png)