→ 🚀What's New? Explore Lansweeper's Fall 2024 Updates! Fall Launch Blog !
06-10-2024 03:03 PM
Good afternoon everyone,
I have a small problem with the deployment of Chrome updates. It seems that after the update the software that was 64Bit becomes 32Bit, in reality this is not the case because opening the browser on the info confirms that the software is 64Bit, then I use a report that tests the version from the TblSoftware table where a Is32Bit field, detects the difference, I think it's just a problem where the information is read or write but I can't figure it out.
To deploy I use the lansweeper deploy menu.
THE REPORT!
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,
tblSoftware.Is32Bit As Bit,
Case
When tblSoftware.Is32Bit = 'True' Then '32Bit'
Else '64Bit'
End As [32/64 Bit],
tblSoftware.InstallLocation As Location,
Case
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) > 125 Then
'Up to date'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 125 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 6422 Then
'Up to date'
When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 125 And
Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 6422 And
Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 142 Then
'Up to date'............
Thanks for your help!!!
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now