SCCM – WQL Query for machines with 4GB RAM or more

If you have a requirement to identify machines with 4GB RAM or more, then you can use the following WQL query to do this. select distinct SMS_R_System.Name, SMS_R_System.ADSiteName, SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory, SMS_R_System.IPAddresses, SMS_R_System.LastLogonUserName, SMS_R_System.DistinguishedName from SMS_R_System inner join SMS_G_System_X86_PC_MEMORY on SMS_G_System_X86_PC_MEMORY.ResourceID = SMS_R_System.ResourceId where SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory >= 4096000 order by SMS_R_System.Name, SMS_R_System.ADSiteName, SMS_R_System.IPAddresses, SMS_R_System.LastLogonUserName, SMS_R_System.DistinguishedName You can change […]

SCCM Wql Query For Machines With 4gb Ram Or More
If you have a requirement to identify machines with 4GB RAM or more, then you can use the following WQL query to do this.
select distinct  
      SMS_R_System.Name,   
      SMS_R_System.ADSiteName,   
      SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory,   
      SMS_R_System.IPAddresses,   
      SMS_R_System.LastLogonUserName,   
      SMS_R_System.DistinguishedName   
 from SMS_R_System  
      inner join SMS_G_System_X86_PC_MEMORY  
      on SMS_G_System_X86_PC_MEMORY.ResourceID = SMS_R_System.ResourceId  
 where SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory >= 4096000
      order by SMS_R_System.Name,  
      SMS_R_System.ADSiteName,  
      SMS_R_System.IPAddresses,  
      SMS_R_System.LastLogonUserName,  
      SMS_R_System.DistinguishedName
You can change the where value of 4096000 to amend the maximum RAM value being evaluated.

More Queries

Our full range of SQL and WQL Collection queries are available here.

Feedback

If you have any questions or feedback about this post, or if you would like us to create any queries for you, please go ahead and leave us a message below in the comments section and we will get back to you as quick as we can.
🛠️

Gear We Recommend

Testing configs is easier with a dedicated admin machine set up right. Here’s the kit we use.

Browse our Windows Admin Toolkit picks on Amazon

As an Amazon Associate, TechyGeeksHome earns from qualifying purchases.


Discover more from TechyGeeksHome

Subscribe to get the latest posts sent to your email.

Andrew Armstrong

Andrew Armstrong is a UK-based IT professional with 26+ years of hands-on experience in Windows, Windows Server, SCCM/ConfigMgr, Active Directory, PowerShell, and enterprise infrastructure.

He founded TechyGeeksHome in 2010 and has published over 1,500 practical guides covering real-world IT problems and solutions. When not solving IT problems,

Andrew develops free Windows utilities including Ultimate Settings Panel, which has been downloaded over 850,000 times.

One thought on “SCCM – WQL Query for machines with 4GB RAM or more

Comments are closed.