cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
eranavn
Engaged Sweeper II
Hi all,
I need a report to find all assets with the service Apache installed on.
2 REPLIES 2
shAkz89
Engaged Sweeper
what is the name of the service? 🙂
rgonzaga
Engaged Sweeper
Try this to report specific service.
You have to change the service display name(Higlighted).

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried tbl,
tblServicesUni.Caption
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblServices On tblAssets.AssetID = tblServices.AssetID
Inner Join tblServicesUni On tblServicesUni.ServiceuniqueID =
tblServices.ServiceuniqueID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblServicesUni.Caption Like '%Service Name%' And
tblServices.Started = 1 And tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName