I would like to create a report of assets that don't have certain sofware installed.
I have already created following report with the parameter
Not Like 'Pulse Secure Installer Service' , but this will create a list of every software packet on each computer.
Any solution for this? I also tried a Dynamic group which gives me the right results, but there I don't have the "Lastseen" option.
This is what I currently have:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblADComputers.OU,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tsysAssetTypes.AssetTypename = 'Windows' And
(tblADComputers.OU Like '%OU=Laptop%' And
tblSoftwareUni.softwareName Not Like 'Pulse Secure Installer Service' And
tblAssetCustom.State = 1