‎09-10-2018 03:54 PM
Solved! Go to Solution.
‎09-13-2018 09:20 PM
‎09-13-2018 09:20 PM
‎09-13-2018 09:07 PM
Select Top 1000000
tblAssets.AssetID,
tblAssets.IPAddress,
tblAssets.AssetUnique,
tblAssets.Username,
tsysOS.Image As icon,
av1.DisplayName AS Webroot,
av2.DisplayName AS Defender,
tblAssets.Lastseen
From
tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
LEFT JOIN tblAntivirus AS av1 ON av1.AssetID = tblAssets.AssetID AND av1.DisplayName='Webroot SecureAnywhere'
LEFT JOIN tblAntivirus AS av2 ON av2.AssetID = tblAssets.AssetID AND av2.DisplayName='Windows Defender'
Where
av1.AssetID IS NULL
AND av2.AssetID IS NULL
Order By
tblAssets.AssetName
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now