→ 🚀What's New? Explore Lansweeper's Fall 2024 Updates! Fall Launch Blog !
‎05-26-2015 10:22 AM
Solved! Go to Solution.
‎05-26-2015 01:24 PM
The license compliance module only supports Windows computers for now. Linux/Mac support is on our customer wish list, but we do not have a release date for this feature. To get a count of software packages installed on Linux/Mac, you can build custom reports for now. Sample reports can be seen below. You can submit software names in the parts of the queries we've highlighted.
Instructions for running reports 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 uses standard SQL queries. This seems like a good tutorial.
- Updating to Lansweeper 5.2, if you haven't already. Lansweeper 5.2 includes a database dictionary, which is linked at the top of the report builder.
Linux report
Select Top 1000000 tblSoftwareUni.softwareName,
tblLinuxSoftware.Version As softwareVersion,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblLinuxSoftware On tblAssets.AssetID = tblLinuxSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblLinuxSoftware.SoftwareUniID
Where tblAssetCustom.State = 1
Group By tblSoftwareUni.softwareName,
tblLinuxSoftware.VersionHaving tblSoftwareUni.softwareName In ('name software 1', 'name software 2')
Mac report
Select Top 1000000 tblSoftwareUni.softwareName,
tblMacApplications.Version as softwareVersion,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblMacApplications
On tblAssets.AssetID = tblMacApplications.AssetID
Inner Join tblSoftwareUni On tblMacApplications.softid = tblSoftwareUni.SoftID
Where tblAssetCustom.State = 1
Group By tblSoftwareUni.softwareName,
tblMacApplications.VersionHaving tblSoftwareUni.softwareName In ('name software 1', 'name software 2')
‎05-26-2015 01:24 PM
The license compliance module only supports Windows computers for now. Linux/Mac support is on our customer wish list, but we do not have a release date for this feature. To get a count of software packages installed on Linux/Mac, you can build custom reports for now. Sample reports can be seen below. You can submit software names in the parts of the queries we've highlighted.
Instructions for running reports 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 uses standard SQL queries. This seems like a good tutorial.
- Updating to Lansweeper 5.2, if you haven't already. Lansweeper 5.2 includes a database dictionary, which is linked at the top of the report builder.
Linux report
Select Top 1000000 tblSoftwareUni.softwareName,
tblLinuxSoftware.Version As softwareVersion,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblLinuxSoftware On tblAssets.AssetID = tblLinuxSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblLinuxSoftware.SoftwareUniID
Where tblAssetCustom.State = 1
Group By tblSoftwareUni.softwareName,
tblLinuxSoftware.VersionHaving tblSoftwareUni.softwareName In ('name software 1', 'name software 2')
Mac report
Select Top 1000000 tblSoftwareUni.softwareName,
tblMacApplications.Version as softwareVersion,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblMacApplications
On tblAssets.AssetID = tblMacApplications.AssetID
Inner Join tblSoftwareUni On tblMacApplications.softid = tblSoftwareUni.SoftID
Where tblAssetCustom.State = 1
Group By tblSoftwareUni.softwareName,
tblMacApplications.VersionHaving tblSoftwareUni.softwareName In ('name software 1', 'name software 2')
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now