TRY NOW

Google Chrome Version Audit

Software

Discover which Chrome installations are out of date with the version audit. The audit checks all Chrome versions in your IT environment and shows devices that are not running the highest version detected. To ensure the best accuracy, install the latest version on a single device and rescan it.

Note: The Lansweeper Site version of this audit does utilize the comparison functionality

Run The Google Chrome Version Audit Report Now!

chrome version audit example

Google Chrome Version Audit On-Prem Query

Select Top 1000000 tblAssets.AssetID,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
 tblAssets.AssetName,
 tblSoftwareUni.softwareName As Software,
 tblSoftwareUni.SoftwarePublisher As Publisher,
 tblSoftware.softwareVersion As Version,
 b.LatestVersion as [Highest Version Detected],
  tblSoftware.Lastchanged,
  tblassets.Lastseen
From tblAssets
 Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
 Inner Join tblState On tblState.State = tblAssetCustom.State
 Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
 Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
 Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Outer Join tsysOS On tsysOS.OScode = tblAssets.OScode
 Inner Join (Select __.SoftID,
   __.Major,
   __.Minor,
   __.Build,
   __.Revision,
   LatestVersion = __.softwareVersion
  From (Select *,
     r = Row_Number() Over (Partition By _.SoftID Order By _.Major Desc,
     _.Minor Desc, _.Build Desc, _.Revision Desc)
    From (Select Distinct tblSoftware.SoftID,
       Major = Convert(int,ParseName(tblSoftware.softwareVersion, 4)),
       Minor = Convert(int,ParseName(tblSoftware.softwareVersion, 3)),
       Build = Convert(int,ParseName(tblSoftware.softwareVersion, 2)),
       Revision = Convert(int,ParseName(tblSoftware.softwareVersion, 1)),
       tblSoftware.softwareVersion
      From tblSoftware
       Inner Join tblSoftwareUni On tblSoftware.SoftID =
         tblSoftwareUni.SoftID
      Where tblSoftwareUni.softwareName Like ('%Google Chrome%')) _) __
  Where __.r = 1) b On tblSoftware.SoftID = b.SoftID And
   tblSoftware.softwareVersion <> b.LatestVersion
Where tblSoftwareUni.softwareName like ('%Google Chrome%') And tblState.Statename = 'Active'

Union

Select Top 1000000 tblAssets.AssetID,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
 tblAssets.AssetName,
 tblSoftwareUni.softwareName As Software,
 tblSoftwareUni.SoftwarePublisher As Publisher,
 tblMacApplications.Version As Version,
 b.LatestVersion as [Highest Version Detected],
 tblMacApplications.Lastchanged,
  tblassets.Lastseen
From tblAssets
 Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
 Inner Join tblState On tblState.State = tblAssetCustom.State
 Inner Join tblMacApplications On tblAssets.AssetID = tblMacApplications.AssetID
 Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblMacApplications.softid
 Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Outer Join tsysOS On tsysOS.OScode = tblAssets.OScode
 Inner Join (Select __.SoftID,
   __.Major,
   __.Minor,
   __.Build,
   __.Revision,
   LatestVersion = __.Version
  From (Select *,
     r = Row_Number() Over (Partition By _.SoftID Order By _.Major Desc,
     _.Minor Desc, _.Build Desc, _.Revision Desc)
    From (Select Distinct tblMacApplications.SoftID,
       Major = Convert(int,ParseName(tblMacApplications.Version, 4)),
       Minor = Convert(int,ParseName(tblMacApplications.Version, 3)),
       Build = Convert(int,ParseName(tblMacApplications.Version, 2)),
       Revision = Convert(int,ParseName(tblMacApplications.Version, 1)),
       tblMacApplications.Version
      From tblMacApplications
       Inner Join tblSoftwareUni On tblMacApplications.SoftID =
         tblSoftwareUni.SoftID
      Where tblSoftwareUni.softwareName Like ('%Google Chrome%')) _) __
  Where __.r = 1) b On tblMacApplications.SoftID = b.SoftID And
   tblMacApplications.Version <> b.LatestVersion
Where tblSoftwareUni.softwareName like ('%Google Chrome%') And tblState.Statename = 'Active'

Union

Select Top 1000000 tblAssets.AssetID,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
 tblAssets.AssetName,
 tblSoftwareUni.softwareName As Software,
 tblSoftwareUni.SoftwarePublisher As Publisher,
 tblLinuxSoftware.Version As Version,
 b.LatestVersion as [Highest Version Detected],
  tblLinuxSoftware.Lastchanged,
  tblassets.Lastseen
From tblAssets
 Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
 Inner Join tblState On tblState.State = tblAssetCustom.State
 Inner Join tblLinuxSoftware On tblAssets.AssetID = tblLinuxSoftware.AssetID
 Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblLinuxSoftware.SoftwareUniID
 Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Outer Join tsysOS On tsysOS.OScode = tblAssets.OScode
 Inner Join (Select __.SoftwareUniID,
   __.Major,
   __.Minor,
   __.Build,
   __.Revision,
   LatestVersion = __.Version
  From (Select *,
     r = Row_Number() Over (Partition By _.SoftwareUniID Order By _.Major Desc,
     _.Minor Desc, _.Build Desc, _.Revision Desc)
    From (Select Distinct tblLinuxSoftware.SoftwareUniID,
       Major = Convert(int,ParseName(CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END, 4)),
       Minor = Convert(int,ParseName(CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END, 3)),
       Build = Convert(int,ParseName(CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END, 2)),
       Revision = Convert(int,ParseName(CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END, 1)),
       CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END as Version
      From tblLinuxSoftware
       Inner Join tblSoftwareUni On tblLinuxSoftware.SoftwareUniID =
         tblSoftwareUni.SoftID
      Where tblSoftwareUni.softwareName = ('google-chrome-stable')) _) __
  Where __.r = 1) b On tblLinuxSoftware.SoftwareUniID = b.SoftwareUniID And
   CASE
                WHEN tblLinuxSoftware.Version LIKE '%-1%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('-', tblLinuxSoftware.Version) - 1)
                WHEN tblLinuxSoftware.Version LIKE '%R%' THEN LEFT(tblLinuxSoftware.Version, CHARINDEX('R', tblLinuxSoftware.Version) - 1)
                ELSE tblLinuxSoftware.Version
            END <> b.LatestVersion
Where tblSoftwareUni.softwareName = ('google-chrome-stable') And tblState.Statename = 'Active'

Show

Hide

NO CREDIT CARD REQUIRED

Ready to get started?
You’ll be up and running in no time.

Explore all our features, free for 14 days.