Custom search failed login for specific AD group

Trying to edit search "All failed Logons" to only include specific AD groups.

I change

(ComputerType & 24 != 0 )

to

(ComputerType & 24 != 0 ) and member_of( Who, 'Domain Admin', true)

But I dont get any result. Any insight? (I cant insert picture from local drive)

Parents Reply Children
  • Hi,

    There might be several reasons for such result. Member_of is making direct live requests to AD of your domain. First, if the user under which you run RV and the events in the repository are not from the same forest/domain, using member_of has no sense, nothing will be found. The Second reason is opposite, you are in the same forest/domain and there is a huge amount of events that should be returned to a grid. As I mentioned earlier, the search may take unreasonable time. I agree that this combination (who + member_of) should have better performance, and I will create a change request on this. May I ask you also contact the official Quest support and create a ticket, this will speed-up the investigation and possible fix.

    Thank you!

  • Thanks for the info. I tried support first and was told to use user forum. I will have to play around with it.