I am working with PowerShell commands. I want to filter records with one field name description. I successfully filter with one description named "school". My command is:
Get-ADuser -filter {(Description -eq "school")} -Properties * | select *
But I want to filter records with multiple values of description like "school", "college", etc. How will this be possible?