We’re currently experiencing a high volume of support requests, which may result in longer response times — thank you for your patience and understanding.
Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Starbug1
Engaged Sweeper

Hi, i am using the latest version, cannot seem to find a pre-build in report that lets me search to see if a specific KB is installed across my server estate, is there a better way of doing this with something built in, or does it need to be a custom?

2 REPLIES 2
DavidPK
Lansweeper Tech Support
Lansweeper Tech Support

Below you can find a sample report that will list all assets which have(sample KB4880970) installed. We used a sample KB and this can be replaced in the query for the one you are looking for. 
 

Instructions for adding this report to your Lansweeper installation can be found here: https://www.lansweeper.com/knowledgebase/how-to-add-a-report-to-your-lansweeper-installation/

 

If you are interested in building or modifying reports, we do recommend:

Select Top 1000000 tsysOS.Image As icon,
  tblAssets.AssetID,
  tblAssets.AssetName,
  tblAssets.Domain,
  tblAssets.Username,
  tblAssets.Userdomain,
  tblAssets.IPAddress,
  tblAssets.Firstseen,
  tblAssets.Lastseen,
  tblAssets.Lasttried
From tblAssets
  Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
  Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblAssets.AssetID In (Select Top 1000000 tblQuickFixEngineering.AssetID
      From tblQuickFixEngineering Inner Join tblQuickFixEngineeringUni
          On tblQuickFixEngineeringUni.QFEID = tblQuickFixEngineering.QFEID
      Where tblQuickFixEngineeringUni.HotFixID Like '%KB4880970%') And
  tblAssetCustom.State = 1 And tblAssets.Uptime Is Not Null
Order By tblAssets.Domain,
  tblAssets.AssetName