
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2013 07:14 PM
I would basically like to get a report for software installed on computers located in an OU. Is this possible..... I have several computer OU's for different offices and would like to see what software each office is using and how many licenses. I am new to this and any help you can provide will be appreciated.
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2013 03:36 PM
Please use this sql code:
Select Top 1000000 tblADComputers.OU,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher,
Count(tblSoftware.SoftwareID) As Total
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblAssetCustom.State = 1
Group By tblADComputers.OU,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher
Order By tblADComputers.OU,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher
