cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
innoit
Engaged Sweeper
Hello,
We are using Lansweeper to inventory our clients and licenses.

Some of the licenses are running on a central license server and are bound to specific users or clients.
At the moment we can’t map those licenses in lansweeper to a specific user or client (asset) which have the right to use the software.

In addition, there exists some licenses which includes a right to downgrade to an older version of the software instead of using the new one. Or some licenses gives the ability to use the same license key on a second client if the same user owns both clients.

Situations like this can't be considered from lansweeper and falsify our license statistic.

Is there an update planned to integrate those functions? And if so, could you tell me an approximate release-time?

Thank you.
1 REPLY 1
Susan_A
Lansweeper Alumni
At the moment, Lansweeper's license compliance modules cannot deal with the situations you're describing. These features have been requested by a few other customers and are on our customer wish list, but we do not have an estimated release date for them at this time.

You could certainly build custom reports though to list information like this. It is perfectly possible for instance to report on machines that have a specific software installed and that are not part of a list of authorized machines. I included a sample report below. You would just need to insert the software name and the NetBIOS names of the authorized machines. Instructions for adding this report to your installation can be found here. If you are interested in building or modifying reports, we would recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, more information on which can be found here. The dictionary explains in great detail what each table and field stores.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblSoftwareUni.softwareName As software,
tblSoftware.softwareVersion As version,
tblSoftwareUni.SoftwarePublisher As publisher,
tsysOS.Image As icon
From tblSoftware
Inner Join tblAssets On tblSoftware.AssetID = tblAssets.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssets.AssetName Not In ('name authorized computer 1', 'name authorized computer 2','name authorized computer 3') And
tblSoftwareUni.softwareName Like '%software name%' And tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName