#TodayILearned that to filter for multiple conditions in Powershell you have to revert to this syntax
$Users | where-object {$.DistinguishedName -like “Pulisic” -or $.Description -like “Pulisic” -or $_.EmployeeNumber -like “Pulisic"}
#TodayILearned that to filter for multiple conditions in Powershell you have to revert to this syntax
$Users | where-object {$.DistinguishedName -like “Pulisic” -or $.Description -like “Pulisic” -or $_.EmployeeNumber -like “Pulisic"}