Hi Kimberlee,
• Lansweeper does not pull a printer’s firmware version out-of-the-box.
• If the printer exposes that value through SNMP you can still have Lansweeper capture it – just add the corresponding OID as a “Custom OID”.
• After the next rescan the value appears on the asset’s SNMP-OID tab and can be used in reports (e.g. to spot outdated firmware).
More information on custom OID scanning
https://www.lansweeper.com/product/features/it-network-discovery/custom-oid-scanning/
If you set up a custom OID scanning target you can use the below report
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssets.IPAddress,
tblOIDData.Label,
tblOIDData.[Key],
tblOIDData.Data,
tblOIDData.LastChanged,
tblAssets.Description,
tblAssetCustom.Location,
tsysIPLocations.IPLocation,
tblAssets.Firstseen,
tblAssets.Lastseen
From tblAssets
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblState On tblAssetCustom.State = tblState.State
Left Join tsysIPLocations On tblAssets.LocationID = tsysIPLocations.LocationID
Left Join tblOIDData On tblAssets.AssetID = tblOIDData.AssetID
Where tblAssetCustom.Manufacturer Like 'Cisco%' And tblAssets.Lastseen >
GetDate() - 90 And tsysAssetTypes.AssetTypename Like 'switch' And
tblState.Statename Like 'active'