Hello i got problem with Lansweeper reports, i use
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblOperatingsystem.Caption As SO, = 'Microsoft Windows 10 Pro'
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Lastseen,
tsysOS.OScode,
tblNtlog.Eventcode, = 6005
tblNtlog.TimeGenerated,
tblAssetCustom.State
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblNtlog On tblAssets.AssetID = tblNtlog.AssetID
Where tblOperatingsystem.Caption = 'Microsoft Windows 10 Pro' And
tblNtlog.Eventcode = 6005 And tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName
Lansweeper is scanning assets correctly creating log for event 6005, but some of the logs are not appearing in the reports and some are. And where is the problem?