Share via

missing or not installed

George Mikhail 1 Reputation point
2022-09-22T21:16:56.207+00:00

Hello. i am new to SCCM and i am trying to pull out a repot from SCCM to show me which workstation doesn't have a specific version of McAfee installed so i can make sure it gets installed.

any Idea how to get this done?

thank you

Microsoft Security | Intune | Configuration Manager | Application
0 comments No comments

1 answer

Sort by: Most helpful
  1. AllenLiu-MSFT 49,441 Reputation points Microsoft External Staff
    2022-09-23T02:35:40.907+00:00

    Hi, @George Mikhail

    Thank you for posting in Microsoft Q&A forum.

    We can use a SQL query to get the result that which workstation doesn't have a specific version of software installed.
    I take 7-zip for example, you just replace the DisplayName0 and Version0 with your software McAfee.

    select name0 from v_r_system   
    where name0 not in   
    (select Name0 from v_Add_Remove_Programs  
    inner join v_R_System on v_Add_Remove_Programs.ResourceID = v_R_System.ResourceID  
    where DisplayName0 like '%7-zip%' and Version0 = '19.00.00.0')  
    

    244053-1.png


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?


Your answer

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