‎05-20-2015 10:31 AM
Select Top 1000000 tblAssets.AssetID,
tblAssets.Domain,
tblAssets.AssetName,
Case When tblComputersystem.Domainrole > 1 Then 'Server' Else Case
When Coalesce(tblPortableBattery.AssetID, 0) = 0 Then 'Desktop'
Else 'Laptop' End End As Type,
tblState.Statename As [Asset state],
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.Lastseen,
tblOperatingsystem.Caption As OS,
tSoftware.softwareName,
tSoftware.SoftwarePublisher,
tSoftware.softwareVersion
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join (Select tblSoftware.AssetID,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher,
tblSoftware.softwareVersion
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where (tblSoftwareUni.softwareName Like '%adobe%') Or
(tblSoftwareUni.SoftwarePublisher Like '%adobe%')) tSoftware
On tSoftware.AssetID = tblAssets.AssetID
Left Join tblPortableBattery On tblAssets.AssetID = tblPortableBattery.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Left Join tblState On tblState.State = tblAssetCustom.State
Order By tblAssets.AssetName,
tSoftware.softwareName
‎06-20-2019 09:23 PM
Daniel.B wrote:
Adobe license audits require a full list of computers from asset inventory software and based on AD computer accounts as well as an inventory on Adobe software installations on the network. The following report provides this.
Note: In order to get a valid list, ensure that all your computers were successfully scanned using Scheduled Computer scanning (providing the ADSI paths of all your computer OU's in Active Directory) and any other scanning method like IP Address Range scanning or LsPush.
The report lists all computers scanned in your network.
Sorted on:
- Asset name
- Software name
Select Top 1000000 tblAssets.AssetID,
tblAssets.Domain,
tblAssets.AssetName,
Case When tblComputersystem.Domainrole > 1 Then 'Server' Else Case
When Coalesce(tblPortableBattery.AssetID, 0) = 0 Then 'Desktop'
Else 'Laptop' End End As Type,
tblState.Statename As [Asset state],
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.Lastseen,
tblOperatingsystem.Caption As OS,
tSoftware.softwareName,
tSoftware.SoftwarePublisher,
tSoftware.softwareVersion
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join (Select tblSoftware.AssetID,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher,
tblSoftware.softwareVersion
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where (tblSoftwareUni.softwareName Like '%adobe%') Or
(tblSoftwareUni.SoftwarePublisher Like '%adobe%')) tSoftware
On tSoftware.AssetID = tblAssets.AssetID
Left Join tblPortableBattery On tblAssets.AssetID = tblPortableBattery.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Left Join tblState On tblState.State = tblAssetCustom.State
Order By tblAssets.AssetName,
tSoftware.softwareName
Adobe may ask for a full list of Adobe executables as well. This can't be retrieved in a fully automatic way as Lansweeper doesn't search for files with an unknown file path. However, you could scan for processes (under Configuration\Item Wait Time enable scanning for PROCESS and reduce the scanning interval), use a report to list the executable paths of Adobe-related processes and set up Custom File scanning based on these.
Alternatively use this deployment package in order to search for executables on network computers.
‎03-12-2019 11:33 AM
Daniel.B wrote:
Adobe license audits require a full list of computers from asset inventory software and based on AD computer accounts as well as an inventory on Adobe software installations on the network. The following report provides this.
Note: In order to get a valid list, ensure that all your computers were successfully scanned using Scheduled Computer scanning (providing the ADSI paths of all your computer OU's in Active Directory) and any other scanning method like IP Address Range scanning or LsPush.
The report lists all computers scanned in your network.
Sorted on:
- Asset name
- Software name
Select Top 1000000 tblAssets.AssetID,
tblAssets.Domain,
tblAssets.AssetName,
Case When tblComputersystem.Domainrole > 1 Then 'Server' Else Case
When Coalesce(tblPortableBattery.AssetID, 0) = 0 Then 'Desktop'
Else 'Laptop' End End As Type,
tblState.Statename As [Asset state],
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.Lastseen,
tblOperatingsystem.Caption As OS,
tSoftware.softwareName,
tSoftware.SoftwarePublisher,
tSoftware.softwareVersion
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join (Select tblSoftware.AssetID,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher,
tblSoftware.softwareVersion
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where (tblSoftwareUni.softwareName Like '%adobe%') Or
(tblSoftwareUni.SoftwarePublisher Like '%adobe%')) tSoftware
On tSoftware.AssetID = tblAssets.AssetID
Left Join tblPortableBattery On tblAssets.AssetID = tblPortableBattery.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Left Join tblState On tblState.State = tblAssetCustom.State
Order By tblAssets.AssetName,
tSoftware.softwareName
Adobe may ask for a full list of Adobe executables as well. This can't be retrieved in a fully automatic way as Lansweeper doesn't search for files with an unknown file path. However, you could scan for processes (under Configuration\Item Wait Time enable scanning for PROCESS and reduce the scanning interval), use a report to list the executable paths of Adobe-related processes and set up Custom File scanning based on these.
Alternatively use this deployment package in order to search for executables on network computers.
‎07-08-2015 03:06 PM
‎07-02-2015 01:39 PM
SubString(tSoftware.softwareVersion, 1, CharIndex('.',
tSoftware.softwareVersion) - 1) As [major version]
‎07-01-2015 11:08 PM
Error while saving: "There was an error parsing the query. [ Token line number = 1,Token line offset = 424,Token in error = Left ]"
error while getting report
Data conversion failed. [ OLE DB status value (if known) = 2 ]
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now