SCCM – SQL Query for ConfigMgr clients not upgraded to CM2012 (v5)

sql2016

Table of Contents

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

Read Time:53 Second

This is a query for ConfigMgr 2012 and it will return the machines that do not have the 2012 client installed on them. This is useful if you have gone through an upgrade from 2007 to 2012 and need to know if or where machines have not fully upgraded themselves so that you can take remedial action on them.

This query will return the following information:

  • Machine Name
  • SCCM Client Version
  • Group or Workgroup
  • Last known user to Logon to the machine
  • Last known Active Directory Site Name
  • Last known IP address
SELECT  
      Name,  
      ClientVersion,  
      ResourceDomainORWorkgroup,  
      LastLogonUserDomain,  
      LastLogonUserName,  
      ADSiteName,  
      IPAddresses  
 FROM  
   SMS_R_System  
      where Client = 1 and ClientVersion < '5.00' and ClientType != 3

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.