Versions
8.7 SP2+ and 8.8 All
Description
This article describes two options of Exporting License Information.
Part 1: Export Licenses to use to Import into a LANDesk Core
- Open the console.
- Open the Software License Monitoring Module | Tools | Reporting | Software License Monitoring
- Click on the Export Icon
- Choose "Everything except information deneid by the group"
- This will create an XML file that can be imported into another core
Part 2 : Export Licenses to use in Excel or to view a complete list of data in LANDesk at a glance
To export all of your Licenses from your Compliance Groups you will need to create a SQL query. If you do not have any SQL tools installed, please use the following article for installation: http://community.landesk.com/support/docs/DOC-5764
Here are three products that have Licenses applied to them under a Compliance Group.
Using the below query you will see the Title of the Software, the License Number, the Quantity of the Licenses, Purchase Date and number of installations.
-- Find all licensesSELECT Product.Title, ProductLicense.LicenseNumber,
ProductLicense.Quantity, ProductLicense.PurchaseDate, Count(Productcomputer.Product_idn) as CountInstalledFROM Product, CustomGroupProduct, ProductLicense, ProductComputerWHERE Product.Product_IDN = CustomGroupProduct.Member_IDNAND CustomGroupProduct.CustomGroupProduct_IDN = ProductLicense.CustomGroupProduct_IDN AND
Product.Product_idn = ProductComputer.Product_idnGroupBy Product.Title, ProductLicense.LicenseNumber,
ProductLicense.Quantity, ProductLicense.PurchaseDate