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 Collection Query for Office 2013 Pro Plus x64

Status
Not open for further replies.

ikkhatri

Active Member
Messages
35
Solutions
2
Reaction score
3
Points
8
Hi There,

Thank you for your wonderful guides which helped me deploying Office 2013 Pro Plus.

I was looking for a collection query that will show me all computers with Office 2013 installed.

Currently I am using this:

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_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"

Members visible on site = 0 (which is not true)

Would you happen to know of one that works?

Thank you.
 
Solution
Hi There,

Thank you for your wonderful guides which helped me deploying Office 2013 Pro Plus.

I was looking for a collection query that will show me all computers with Office 2013 installed.

Currently I am using this:

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_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"

Members visible on site = 0 (which is not true)

Would you happen to know of one that works?

Thank you.


Hi mate, I am...
Hi There,

Thank you for your wonderful guides which helped me deploying Office 2013 Pro Plus.

I was looking for a collection query that will show me all computers with Office 2013 installed.

Currently I am using this:

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_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"

Members visible on site = 0 (which is not true)

Would you happen to know of one that works?

Thank you.


Hi mate, I am running this in my environment and it's working great. It allows you to find 2 applications based on the display name

PHP:
select
SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Office%2013%" and 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 '%Compatibility%Pack%')

This if you after 1 application only.

PHP:
select
SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Office%2013%"
 
Solution
Hi mate, I am running this in my environment and it's working great. It allows you to find 2 applications based on the display name

PHP:
select
SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Office%2013%" and 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 '%Compatibility%Pack%')

This if you after 1 application only.

PHP:
select
SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Office%2013%"

My apologies for a super late response! Very much appreciate the above query provided.
 
Status
Not open for further replies.

Forum statistics

Threads
7,188
Messages
28,061
Members
18,333
Latest member
Sreeja

Trending content

Back
Top