# Powershell to Get All Unique Properties in AD

```powershell
get-aduser -filter * -property title | Select-Object title | sort-object title -unique
```