Query to Identify Microsoft Office Versions Installed on agents

Fernando 20 Reputation points
2024-12-24T16:06:09.74+00:00

What is the best way to write a query to detect machines that have Microsoft Office installed, including the specific version details?

Microsoft Configuration Manager
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. XinGuo-MSFT 20,156 Reputation points
    2024-12-25T02:21:44.03+00:00

    Hi,

    To identify machines with Microsoft Office installed and retrieve specific version details, you can use a query in SCCM:

    SELECT DISTINCT SYS.Name0, 
                    ADD_REMOVE_PROGRAMS.DisplayName0, 
                    ADD_REMOVE_PROGRAMS.Version0 
    FROM v_R_System SYS 
    INNER JOIN v_Add_Remove_Programs ADD_REMOVE_PROGRAMS 
    ON SYS.ResourceID = ADD_REMOVE_PROGRAMS.ResourceID 
    WHERE ADD_REMOVE_PROGRAMS.DisplayName0 LIKE '%Microsoft Office%'
    
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.