→ 🚀Are you a Lansweeper Champion?! Join our Contributor Program Sign up here!

Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
matthew1g
Engaged Sweeper III
I need to run a custom report that will list any computers that do not have software X or software Y installed. If the computer has either installed it should not show up on the list. I have a report to show 1 piece of missing software but I have not been able to figure out how to search for 2. Any help would be appreciated!

current report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName As AssetName1,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssets.AssetID Not In (Select Top 1000000 tblSoftware.AssetID
From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblSoftware.softID
Where tblSoftwareUni.softwareName Like 'Symantec Encryption Desktop%')
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
Replace this...
Where tblSoftwareUni.softwareName Like 'Symantec Encryption Desktop%'

... with this:
Where tblSoftwareUni.softwareName Like 'Symantec Encryption Desktop%' or Like '%Name of other software package%'


We would also recommend adding the below criterion to the Criteria column for the tsysAssetTypes.AssetTypename expression, so only Windows computers will be included in your report output.
= 'Windows'

View solution in original post

1 REPLY 1
Hemoco
Lansweeper Alumni
Replace this...
Where tblSoftwareUni.softwareName Like 'Symantec Encryption Desktop%'

... with this:
Where tblSoftwareUni.softwareName Like 'Symantec Encryption Desktop%' or Like '%Name of other software package%'


We would also recommend adding the below criterion to the Criteria column for the tsysAssetTypes.AssetTypename expression, so only Windows computers will be included in your report output.
= 'Windows'

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.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now