Old name: License: Autocad software licensekeys
The report below gives back a list of assets with AutoCAD software serial numbers (note: serial number and installed software information is not related to each other)
The report will only list assets that meet all of the following criteria:
- The asset is a set to the 'Active' state
- The asset is a Windows computer
- There is an AutoCAD serial number available
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblSerialnumber.Product,
tblSerialnumber.ProductKey,
tblSerialnumber.ProductID
From tblAssets
inner join tblSerialnumber ON tblAssets.AssetID = tblSerialnumber.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID = tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblSerialnumber.Product LIKE 'Autocad%' And tblState.Statename = 'Active'
Order By tblAssets.Domain, tblAssets.AssetName