As a stop gap measure I'm trying to create two reports, one for Windows 8 and another for Server 2012 so we can keep track of the installs. There are machines with 8 and 2012 on two different domains and so far I can only get machines on one domain to display in the reports. I can see the machines on domain 2 in the web interface but can't seem to get them to show up in the report. I'm not sure how to either include every machine regardless of the domain it sits on or how to specify which domains to include on the report.
Here is my query.
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblOperatingsystem.Caption, tblADComputers.Description
From tblOperatingsystem Inner Join
tblComputers On tblOperatingsystem.Computername = tblComputers.Computername
Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Inner Join
tblADComputers On tblComputers.Computername = tblADComputers.Computername
Where tblOperatingsystem.Caption Like '%Windows 8%'
Order By dbo.tblComputers.Computer
Thanks ahead of time.