Query list of available/installed Registry Key fixes in SCCM through PowerShell Scripts

Anonymous
2024-12-11T07:28:39+00:00

Hello,

I want to query the list of available/installed Registry Key fixes in the SCCM Applications tab through a PowerShell script.

Right now I am able to use the Get-WMIObject class that will return me the names of the applications available in the SCCM, but it misses the Registry Key fixes or the CVEs in the same tab and I want the list of those as well.

Can anyone help me to know how I can achieve this?

Windows Server Remote and virtual desktops PowerShell

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question. To protect privacy, user profiles for migrated questions are anonymized.

0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2024-12-12T00:15:19+00:00

    Hi,

    You can use Get-ChildItem to list the registry keys, for example

    Get-ChildItem -Path “HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall”

    To confirm which registry keys are used in SCCM, since SCCM is not currently supported in the Microsoft Support Community, it is recommended to repost your question in Microsoft Q&A.

    https://learn.microsoft.com/en-us/answers/questions/

    Click the "Ask a Question" button in the upper right corner to post your question and select the "Microsoft System Center" tag.

    0 comments No comments
  2. Anonymous
    2024-12-12T11:43:06+00:00

    Hello,

    Thanks for your reply, I will try this command and post this question in the other forum as well.

    0 comments No comments