nhottinger Posted January 21, 2015 Report post Posted January 21, 2015 I need to provide management a report of every pc we have in the organization with how much RAM, CPU, HD, Model Number, etc. Is there a report already build that will do that? I'm not familiar with creating new reports so if that is the route I need to go, I will need some assistance with that as well. Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted January 21, 2015 Report post Posted January 21, 2015 Don't know the exact report, but you should be able to get that information from the reports in the Hardware category. Quote Share this post Link to post Share on other sites More sharing options...
nhottinger Posted January 21, 2015 Report post Posted January 21, 2015 (edited) Thanks Peter. After some more digging and trial and error, I figured out how to create a new report based on some I found out there. Seems to be working pretty well. After I ran the report, I notice it only returned 1857 devices. In my SCCM All Workstation or Professional Systems, I have 2353 devices. Any idea why there is such a large difference? Edited January 21, 2015 by nhottinger Quote Share this post Link to post Share on other sites More sharing options...
Jorgen Nilsson Posted January 21, 2015 Report post Posted January 21, 2015 Hi, It would depend on the query you are using, could be that you have many computers that doesn't report hardware inventory as well. Check one of the builin reports and see how many computer they report. Regards,Jörgen Quote Share this post Link to post Share on other sites More sharing options...
nhottinger Posted January 22, 2015 Report post Posted January 22, 2015 Here is my query. I would think it would pull every device it knows of, even if it can't do a hardware inventory on it. Am I wrong? SELECT distinct CS.name0 as 'Computer Name', CS.domain0 as 'Domain', CS.UserName0 as 'User', BIOS.SerialNumber0 as 'Bios serial', SE.SerialNumber0 as 'System Enclosure serial', CS.Manufacturer0 as 'Manufacturer', CS.Model0 as 'model', OS.Caption0 as 'OS', RAA.SMS_Assigned_Sites0 as 'Site', RAM.TotalPhysicalMemory0 as 'Total Memory', sum(isnull(LDisk.Size0,'0')) as 'Hardrive Size', sum(isnull(LDisk.FreeSpace0,'0')) AS 'Free Space', CPU.MaxClockSpeed0 as 'Max CPU Speed', CPU.Name0 as 'CPU Model', CPU.Is64Bit0 as '64 Bit Compatible'from v_GS_COMPUTER_SYSTEM CS right join v_GS_PC_BIOS BIOS on BIOS.ResourceID = CS.ResourceID right join v_GS_SYSTEM SYS on SYS.ResourceID = CS.ResourceID right join v_GS_OPERATING_SYSTEM OS on OS.ResourceID = CS.ResourceID right join v_RA_System_SMSAssignedSites RAA on RAA.ResourceID = CS.ResourceID right join V_GS_X86_PC_MEMORY RAM on RAM.ResourceID = CS.ResourceID right join v_GS_Logical_Disk LDisk on LDisk.ResourceID = CS.ResourceID right join v_GS_Processor CPU on CPU.ResourceID = CS.ResourceID right join v_GS_SYSTEM_ENCLOSURE SE on SE.ResourceID = CS.ResourceIDwhere LDisk.DriveType0 =3group by CS.Name0, CS.domain0, CS.Username0, BIOS.SerialNumber0, SE.SerialNumber0, CS.Manufacturer0, CS.Model0, OS.Caption0, RAA.SMS_Assigned_Sites0, RAM.TotalPhysicalMemory0, CPU.MaxClockSpeed0, CPU.Name0, CPU.Is64Bit0ORDER BY CS.name0 Quote Share this post Link to post Share on other sites More sharing options...