Is it possible to to get all users with a custom attribute defined?
In PowerShell I'd be doing this:
$s = get-aduser -filter 'Description -like "Sales Engineer"' | Select Name
But Instead of filtering on Description I'd want to filter on adm-CustomAttributeBoolean1
The dream was that this would work:
$s = get-admuser -filter 'adm-CustomAttributeBoolean1 -like "True"' | Select Name
Is this possible?
Thanks for any help or tips!