How to get the list of patches/updates installed for the client software

Navaneethapperumal Krishnasamy 1 Reputation point
2020-03-31T10:34:16.92+00:00

I have installed the client software which is created using wix tool. Also installed the patches for the client software.
I need to retrieve back the list of patches installed in the remote machine to my admin application.

I tried, Get-HotFix, Wmic & Win32_QuickFixEngineering. But it retrieves only Microsoft Windows Updates

Could you please help me to get the patches for the client software.

Windows 10 Setup
Windows 10 Setup
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
1,912 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Leon Laude 85,676 Reputation points
    2020-04-02T13:52:35.64+00:00

    Hi,

    If you have installed patches/updates for an existing installed software, you will not be able to identify the patches/updates themselves.
    You can identify that the existing installed software have been updated by checking the version/build number of the installed software.'

    The following PowerShell command lists all installed software and their versions:

    Get-WmiObject -Class Win32_Product | Select Name, Version
    

    Best regards,
    Leon

    0 comments No comments