SCCM 2012 – WQL Query for Machines with less that 1GB RAM

sql2016

Last updated on March 30th, 2023 at 06:06 pm

Read Time:59 Second

If you need to identify machines within your SCCM environment that have a certain amount of RAM or less, you can use the following WQL query to do this.

SQL Query Code

select   
      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 <= 1024000  
           order by SMS_R_System.Name,  
           SMS_R_System.DistinguishedName,  
           SMS_R_System.ADSiteName,  
           SMS_R_System.IPAddresses,  
           SMS_R_System.LastLogonUserName

You can change the where value “1024000” to the amount of RAM that you are looking for.

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.

Click to rate this post!
[Total: 0 Average: 0]

Discover more from TechyGeeksHome

Subscribe to get the latest posts to your email.

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.