Way to see ever computer a user has logged in to?
Evan Sullivan
I am wondering if there is a way to see list all the computers a user has logged in to. The agent logs that information, I would image there is a way?
0
Comments
I am not an SQL wiz but I have been playing. Have this so far, but it's returning computers where I am not logged in the agent events.
I think it's not pulling only computer names from the agentevents where it equals the username, it's pulling all
I got it for the most part, some tweaking to do but this does the trick
select AgentEvents.UserName, Computers.Name from AgentEvents INNER JOIN Computers ON AgentEvents.ComputerId = Computers.ComputerId where AgentEvents.UserName Like 'asd\esullivan'