cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Esben_D
Lansweeper Employee
Lansweeper Employee

Chrome 105 has been released including 24 security fixes and minor feature updates. Check out what's new and which devices need an update with the audit.

4 Comments
MichaelZ
Engaged Sweeper

When I try to add the Audit to my report list, I get the following error:

Conversion failed when converting the nvarchar value 'R 4' to data type int.

 

Ben-rutherford
Engaged Sweeper II

Here is the colourful report that shows in and out of date rather than just displaying the out of date 

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) > 105 Then
      'Up to date'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 105 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5195 Then
      'Up to date'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 105 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5195 And
      Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 52 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) > 105 Then
      '#d4f4be'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 105 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5195 Then
      '#d4f4be'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 105 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5195 And
      Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 52 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'
Esben_D
Lansweeper Employee
Lansweeper Employee

@MichaelZ I think that might be caused by Linux software doing weird stuff. Could you look at your Linux software in Lansweeper and see if there are any Chrome versions that have 'R 4' in the version number?

 

If you can get me a screenshot of what the version number looks like I can make sure the report can deal with it. 

Esben_D
Lansweeper Employee
Lansweeper Employee

@MichaelZ I added a small piece of extra code to the Linux logic to prevent version numbers that have "R 4" at the end to cause an issue. It's the best I could do with the info I had.

If you still have the issue, I'll need more information. Here is the new report: https://community.lansweeper.com/t5/vulnerability-audit-reports/chrome-106-audit/ba-p/62242#M309

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now