
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2016 10:16 AM
hi
Is it possible to get a report of logons with in the last 24 hours?
i would like to see the user that logged on, the PC they logged on to, and the time.
is that possible?
Is it possible to get a report of logons with in the last 24 hours?
i would like to see the user that logged on, the PC they logged on to, and the time.
is that possible?
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2016 11:10 PM
This report should get you started.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblCPlogoninfo.Ipaddress,
tblCPlogoninfo.Domain As Userdomain,
tblCPlogoninfo.Username,
tblCPlogoninfo.logontime
From tblCPlogoninfo
Inner Join tblAssets On tblAssets.AssetID = tblCPlogoninfo.AssetID
Where tblCPlogoninfo.logontime >= DateAdd(hh, -24, GetDate())
Order By tblCPlogoninfo.logontime
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2016 11:10 PM
This report should get you started.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblCPlogoninfo.Ipaddress,
tblCPlogoninfo.Domain As Userdomain,
tblCPlogoninfo.Username,
tblCPlogoninfo.logontime
From tblCPlogoninfo
Inner Join tblAssets On tblAssets.AssetID = tblCPlogoninfo.AssetID
Where tblCPlogoninfo.logontime >= DateAdd(hh, -24, GetDate())
Order By tblCPlogoninfo.logontime
