Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED SCCM collection query office 2010

Status
Not open for further replies.

syed sameer

Well-Known Member
Messages
144
Reaction score
2
Points
18
hi Prajwal
how are you

I want create a collection of the clients having ms office 2010 (including outlook, excel, power point, word 2010) can you send me query
 
Try this -
Code:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceId in (select SMS_R_System.ResourceID 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 like "Microsoft Office%2010%" and SMS_G_System_ADD_REMOVE_PROGRAMS.Version < "14.0.6023") and SMS_R_System.Obsolete = 0 and SMS_R_System.Client = 1
 
Status
Not open for further replies.

Forum statistics

Threads
7,025
Messages
27,490
Members
17,677
Latest member
Nairolf

Trending content

Back
Top