AD Group Filter to filter specific groups while aggregation

Which IIQ version are you inquiring about?

8.5 v

Share all details about your problem, including any error messages you may have received.

I have a use case in which I have to filter out two specific groups at the time of Aggregation. Is there any way through which I can do it without writing any kind of rule.

Do you need this specifically for AD connector only ?

If it is for AD type of connector, then you can use Group FilterQuery to achieve this usecase.

@Jadhikary Please use below filter to exclude the groups:
(&(objectClass=group)(!(cn=ExcludedGroupName1))(!(cn=ExcludedGroupName2)))

@Jadhikary

Try this query. I have been using this in my environment and it works.

(&
    (objectClass=group)
    (!(distinguishedName=CN-Value-Group1))
    (!(distinguishedName=CN-Value-Group2))
)

Thanks @neel193 I tried this but it did not removed the ones that I am trying to filter.

Thank you ! Let me try this.