Find All New Computers That Entered Your Network in the Last Day
Check which new devices have entered your environment. With the new bring your own device culture and with the increased mobility of computers, it is hard to keep track of what devices connect to your networks. This report will help you get more insight into what enters the network. New unknown devices could also lead to security breaches in the worst cases, so it is more important than ever to know what is in your network. Find uninvited strangers in your network which might introduce security holes.
New Computers Found in the Last 24 Hours Query
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tsysOS.OSname,
tblAssets.Description,
tsysOS.Image As icon,
tblAssets.Firstseen
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssets.Firstseen > GetDate() - 1 And tblAssetCustom.State = 1
Order By tblAssets.Firstseen Desc,
tblAssets.AssetName