I am trying to build a query in SCCM 2012 R2 to look for devices that is still running Windows XP Professional. Below is the query statement that I used to ask SCCM to prompt for Operating System entry. The query ran without prompting and return zero row of data. Any idea why it does not prompt me to enter Operating System?
Thanks,
Brian.
select distinct SMS_R_System.NetbiosName,SMS_R_System.LastLogonUserName,
SMS_R_System.OperatingSystemNameandVersion,
SMS_R_System.operatingSystem,
SMS_R_System.operatingSystemVersion
from SMS_R_System
where SMS_R_System.operatingSystem like ##PRM:SMS_R_System.operatingSystem##
Brian