cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
brothersgray
Engaged Sweeper
How would I create a report for all Windows computers with specific missing or installed software or services on a Windows computer?

I'm looking to create a report similar to that of the Lansweeper Most Exploited Vulnerabilities Audit.

https://www.lansweeper.com/report/most-exploited-vulnerabilities-audit/

Your help would be greatly appreciated.
1 REPLY 1
brandon_jones
Champion Sweeper III
I found the following report in the user report's section of the forum. This will allow you to find computers that are not running the particular service that you specify in the report.

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 Not In (Select Top 1000000 tblServices.AssetID
From tblServices Inner Join tblServicesUni On tblServicesUni.ServiceuniqueID =
tblServices.ServiceuniqueID
Where tblServicesUni.Name Like '%YourService%') And tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName