It is not currently possible to "ignore" software items for license compliance. This ability will be added in Lansweeper version 5.0. We do not yet have a release date for this version.
To create a report with just the software information you're after, you would have to specify software criteria manually.
To find specific software items, either:
- Perform a search for the item through the Lansweeper web console. Note that the web console uses a "begins with" filter. When clicking on a software search result, you will be taken to a webpage that lists all computers with that software package installed.
- Use the report below. Replace "YourSoftware" with the software item you're after.
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblSoftware.softwareName, tblSoftware.softwareVersion,
tblSoftware.SoftwarePublisher, tblSoftware.Installdate,
tblSoftware.Lastchanged
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName
Where tblSoftware.softwareName Like '%YourSoftware%'
Order By tblComputers.ComputerUnique