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!

PENDING SCCM Query for Office 365 Install x32/x64

  • Thread starter Thread starter harveybham
  • Start date Start date
  • Replies Replies 4
  • Views Views 5K

harveybham

Well-Known Member
Messages
86
Solutions
1
Reaction score
5
Points
8
Hi,
Does anybody have a working query for SCCM that i can use to detect x32 version of office click to run and x64 version of office click to run?

Thanks
 
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 inner join SMS_G_System_OFFICE365PROPLUSCONFIGURATIONS on SMS_G_System_OFFICE365PROPLUSCONFIGURATIONS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_OFFICE365PROPLUSCONFIGURATIONS.Platform = "x86"

and for 64 bit just change x86 to x64
 
Back
Top