cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
roberto_m
Engaged Sweeper III
How can I know the LSAgent version I have currently running on my macOS?

I need this info to see if a newer version is available.

Thanks!
1 REPLY 1
Esben_D
Lansweeper Employee
Lansweeper Employee
This is actually stored in the Lansweeper database in tblassets.LsAgentVersion.

The report below shows all LsAgent scanned assets along with the version used.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblassets.LsAgentVersion,
tblAssets.Lastseen,
tblAssets.Lasttried
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
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblState.Statename = 'Active' and tblassets.LsAgentVersion IS NOT NULL
Order By tblAssets.Domain,
tblAssets.AssetName