how can i do a report of AD users logged in multiple pc at the same time? im trying to take a list of any user that has logged (event 4624) in more than one pc.
Hi @msiri,
you could try something like this:
index=wineventlog EventCode=4624
| timechart span=1m dc(host) AS host_count BY Account_name
| where host_count>1
you could also reduce the time frame to less than one minute.
Ciao.
Giuseppe