
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2016 08:05 PM
Can anyone please create a report that breaks software down by location so we can see installed software numbers by location?
Thanks!!
Thanks!!
Labels:
- Labels:
-
Report Center
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2016 09:16 PM
Thanks, I tried that but you have to specify the software. I need a list of all software.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2016 09:28 PM
mattgbarnes wrote:
Thanks, I tried that but you have to specify the software. I need a list of all software.
You can remove the softwarename filter from my original query like below, but the report may take awhile to run depending on the number of assets and software scanned.
Select Top 1000000 T1.IPLocation,
T1.softwareName As Software,
T1.softwareVersion As Version,
Count(T1.IPLocation) As SoftwareCount
From (Select Top 1000000 (Case
When tsysIPLocations.IPLocation Is Not Null Then
tsysIPLocations.IPLocation Else 'Undefined' End) As IPLocation,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion
From tblAssets
Inner Join tblAssetCustom On tblAssetCustom.AssetID = tblAssets.AssetID
Left Join tsysIPLocations On tblAssets.IPNumeric >= tsysIPLocations.StartIP
And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Inner Join tblSoftware On tblSoftware.AssetID = tblAssets.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblAssetCustom.State = 1) T1
Group By T1.IPLocation,
T1.softwareName,
T1.softwareVersion
Order By T1.IPLocation,
Software,
Version

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2016 09:14 PM
Someone previously requested something similar, so check this thread out: http://www.lansweeper.com/Forum/yaf_postst13287_view-software-installed-by-location.aspx
