Get-ADUser -identity theIdentifiedUser -server myserver.ext.com -Properties * | ?{$_.Displayname -match "Last"}
Select allOpen in new window
You can filter based on property values.. You can modify the filter based on which property you want to filter.
Example to filter Displayname, use..
Open in new window