cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Nikki
Engaged Sweeper
Hi,
I need to get a report on list of software installed in a domain. How do I get this report. Please help.
Thanks,
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
Please try the report below. Replace "YourDomain" with the domain you're after.

Select Top 1000000 tblSoftware.softwareName As Software,
tblSoftware.softwareVersion As Version, tblSoftware.SoftwarePublisher As
Publisher, Count(tblSoftware.ComputerName) As Total
From tblSoftware Inner Join
tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername
Where tblComputers.Domain = 'YourDomain'
Group By tblSoftware.softwareName, tblSoftware.softwareVersion,
tblSoftware.SoftwarePublisher
Order By Count(tblSoftware.ComputerName) Desc

View solution in original post

1 REPLY 1
Hemoco
Lansweeper Alumni
Please try the report below. Replace "YourDomain" with the domain you're after.

Select Top 1000000 tblSoftware.softwareName As Software,
tblSoftware.softwareVersion As Version, tblSoftware.SoftwarePublisher As
Publisher, Count(tblSoftware.ComputerName) As Total
From tblSoftware Inner Join
tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername
Where tblComputers.Domain = 'YourDomain'
Group By tblSoftware.softwareName, tblSoftware.softwareVersion,
tblSoftware.SoftwarePublisher
Order By Count(tblSoftware.ComputerName) Desc