I need to create a report of all computers that do not have the "Bitdefender Endpoint ..." antivirus installed. Windows defender needs to be ignored from the report.
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon, tblAssets.AssetID, tblAssets.AssetUnique, tblAssets.AssetName, tblAssets.Domain, tblAssets.IPAddress As IP, tblAssets.Lastseen From tblAssets Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype Where tblAssets.AssetID Not In (Select tblSoftware.AssetID From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID Where tblSoftwareUni.softwareName Like '%software name%') And tblAssets.Lastseen <> '' And tblAssets.Assettype = -1 Order By tblAssets.AssetUnique
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon, tblAssets.AssetID, tblAssets.AssetUnique, tblAssets.AssetName, tblAssets.Domain, tblAssets.IPAddress As IP, tblAssets.Lastseen From tblAssets Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype Where tblAssets.AssetID Not In (Select tblSoftware.AssetID From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID Where tblSoftwareUni.softwareName Like '%software name%') And tblAssets.Lastseen <> '' And tblAssets.Assettype = -1 Order By tblAssets.AssetUnique
Reports & Analytics
Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.