Hi,
I have 2 queries one that displays clients with Office Pro 2013 installed
"select distinct SMS_R_System.Name, SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName, SMS_G_System_ADD_REMOVE_PROGRAMS.Version from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Microsoft Office Professional Plus 2013" order by SMS_R_System.Name"
And one that shows clients with Office 2010 installed :
"select distinct SMS_R_System.Name, SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName, SMS_G_System_ADD_REMOVE_PROGRAMS.Version from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Microsoft Office Professional Plus 2010" and SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName != "Microsoft Office Professional Plus 2013" order by SMS_R_System.Name"
My problem is there are clients out there that have been upgraded from office 2010 to 2013 that sill have office 2010 listed.
Is there a way to change the query that shows Clients with Microsoft Office Professional Plus 2010 installed but NOT Microsoft Office Professional Plus 2013
And another similar query to show Clients with Microsoft Office Professional Plus 2013 installed but NOT Microsoft Office Professional Plus 2010
Many Thanks in advance.