cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ScottA
Engaged Sweeper II
Hello everyone.

I think I might be missing something with the built-in unauthorized software report. Forgive me if I sound like a total newbie, LanSweeper is fairly new to me.

The report is only listing software that is unrated/neutral. I have gone through and made specific software unauthorized, but the report doesn't include these. Additionally, the unrated software and unauthorized software reports are displaying the same items.

How can I get the unauthorized software report to display the correct items?

Thanks.
3 REPLIES 3
ScottA
Engaged Sweeper II
Hi Charles,

Thanks for the reply. We're running 6.0.150.60. I had seen that report you linked to previously however, it does not have the intended behavior either. Perhaps I need to be editing it to suit our needs, but by default it does not include unauthorized software.
Esben_D
Lansweeper Employee
Lansweeper Employee
What version are you running?

In my local test installation the report works fine. You can also find a copy of the report here: https://www.lansweeper.com/forum/yaf_postsm38638_Windows--Unauthorized-software--Built-in.aspx
ScottA
Engaged Sweeper II
This is resolved. I used the following the report, otherwise it would only ever list unrated/neutral software.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tsysAssetTypes.AssetTypename As Type,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lasttried,
tblAssets.Lastseen,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
(Case When tblSoftwareUni.Approved = 2 Then 'Not Approved'
Else 'Approved or Unrated' End) As [Approved?]
From tblSoftware
Inner Join tblAssets On tblSoftware.AssetID = tblAssets.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tsysIPLocations On tblAssets.LocationID =
tsysIPLocations.LocationID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblState On tblState.State = tblAssetCustom.State
Where (Case When tblSoftwareUni.Approved = 2 Then 'Not Approved'
Else 'Approved or Unrated'
End) = 'Not Approved' And tblState.Statename = 'Active'
Order By tblAssets.Domain,
tblAssets.AssetName