ā02-02-2023 06:19 PM - last edited on ā06-14-2023 08:10 PM by Mercedes_O
Hi -
I'm looking for a report that will show the following:
Any help would be greatly appreciated!
ā02-03-2023 11:21 AM
Hi , Not sure of an easy way to do this, something which may get you started, but it would be a bit of a manual process to add each application, unless you only want a few applications, this will list each asset and a column for Chrome , column for Adobe with versions ?
Select Top 1000000 tblassets.AssetID,
tblassets.AssetName,
Chrome.softwareVersion As [Google Chrome],
Adobe.softwareVersion As [Adobe Reader]
From tblassets
Inner Join tblassetcustom On tblassets.AssetID = tblassetcustom.AssetID
Inner Join tsysassettypes On tsysassettypes.AssetType = tblassets.Assettype
Right Join (Select tblSoftwareUni.softwareName,
tblSoftware.AssetID,
tblSoftware.softwareVersion
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblSoftwareUni.softwareName = 'Google Chrome') Chrome On
Chrome.AssetID = tblassets.AssetID
Right Join (Select tblSoftware.AssetID,
tblSoftware.softwareVersion,
tblSoftwareUni.softwareName
From tblSoftwareUni
Inner Join tblSoftware On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblSoftwareUni.softwareName Like 'Adobe Acrobat%') Adobe On
Adobe.AssetID = tblassets.AssetID
Where tblassetcustom.State = 1
ā02-03-2023 04:33 PM
Thank you, I had come up with something similar. Any thoughts on the piece needed to compare against an authoritative source to show whether the installed version of up to date or has vulnerabilities?
ā02-03-2023 04:55 PM
Not a great fix but you could use , Background Colour, Foreground Colour or have text against the version , so something like
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then 'red'
End As foregroundcolor,
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then '#fbfb86'
End As backgroundcolor,
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then
'OLD - ' + Chrome.Softwareversion
Else Chrome.Softwareversion
Complete Report
Select Top 1000000 tblassets.AssetID,
tblassets.AssetName,
Chrome.softwareVersion As [Google Chrome],
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then 'red'
End As foregroundcolor,
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then '#fbfb86'
End As backgroundcolor,
Case
When Chrome.Softwareversion Not Like '%109.0.5414.75%' Then
'OLD - ' + Chrome.Softwareversion
Else Chrome.Softwareversion
End As Version
From tblassets
Inner Join tblassetcustom On tblassets.AssetID = tblassetcustom.AssetID
Inner Join tsysassettypes On tsysassettypes.AssetType = tblassets.Assettype
Left Join (Select tblSoftwareUni.softwareName,
tblSoftware.AssetID,
tblSoftware.softwareVersion
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblSoftwareUni.softwareName = 'Google Chrome') Chrome On
Chrome.AssetID = tblassets.AssetID
Left Join (Select tblSoftware.AssetID,
tblSoftware.softwareVersion,
tblSoftwareUni.softwareName
From tblSoftwareUni
Inner Join tblSoftware On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblSoftwareUni.softwareName Like 'Adobe Acrobat%') Adobe On
Adobe.AssetID = tblassets.AssetID
Where tblassetcustom.State = 1
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now