→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎12-13-2018 03:13 AM
‎12-27-2018 11:29 PM
‎12-19-2018 01:13 AM
‎12-19-2018 12:46 AM
Select Distinct Top 1000000 tblAssets.AssetID,
tblAssets.AssetName
--should be able to use the GUI to add more information to the report as needed
From tblAssets
Inner Join tsysOS On TblAssets.OScode = tsysOS.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where
tblAssetCustom.State = 1
--add the Operating Systems that your workstations run below (Could switch to a blacklist too)
AND tsysOS.OSname in ('Win 7','Win 10')
--nested query finds everything with Symantec and the report will return everything not in this nested query
--you could replace "like '%Symantec%'" with "= 'exact name of Symantec as it shows in software list'"
and tblAssets.AssetID not in (
Select tblAssets.AssetID
From tblAssets
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Where tblSoftwareUni.softwareName like '%Symantec%'
)
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now