How does one query an ldap attribute for a blank value? The equivalent of str1==null
in programming?
I tried the following but it didn't work:
(&(objectCategory=computer)(whenCreated>=20160101000000.0Z)(description=))
(&(objectCategory=computer)(whenCreated>=20160101000000.0Z)(description=''))
You have to negate matching the wildcard
*
(any value) :From Microsoft's LDAP Query Basics: