→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
12-20-2023 11:15 PM - last edited on 04-01-2024 12:32 PM by Mercedes_O
Here is an updated report for a Google Chrome audit.
As of today version 120.0.6099.130 has been released.
Lots of talk of another zero day being quickly patched.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename As AssetType,
tblAssets.Username,
tblAssets.Userdomain,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
Case
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) > 120 Then
'Up to date'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 120 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 6099 Then
'Up to date'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 120 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 6099 And
Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 130 Then
'Up to date'
Else 'Out of date'
End As [Patch Status],
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblSoftware.Lastchanged,
Case
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) > 120 Then
'#d4f4be'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 120 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 6099 Then
'#d4f4be'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 120 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 6099 And
Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 130 Then
'#d4f4be'
Else '#ffadad'
End As backgroundcolor
From tblAssets
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
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblSoftwareUni.softwareName Like '%Google Chrome%' And
tblSoftwareUni.SoftwarePublisher Like '%Google%' And tblState.Statename =
'Active'
12-21-2023 11:08 AM
Awesome job! Keep sharing these!
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now