Saw a question on the forums that revolved around Get-ADUser filtering.
Initial code was like this
Import-Csv .users.txt | foreach { Get-ADUser -Filter {Name -like $_.Name} }
which on the face of it seems reasonable. However, you get errors like… Read the full text.