Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7534307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:58:42+00:00 2026-05-30T05:58:42+00:00

I can read list of installed applications from registry: @SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and on Vista and

  • 0

I can read list of installed applications from registry:

@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" 

and on Vista and 7

@"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall"

But in Vista when I click View Installed Updates list of updates is showed.
How to read this list of updates from registry ? In this updates is Internet Explorer and I have to read it too.
Key @"SOFTWARE\Wow6432Node\Microsoft\Updates" contains only three updates but in the list in Control Panel -> Programs and Features
there is more applications and updates. How to read them all from registry ?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T05:58:44+00:00Added an answer on May 30, 2026 at 5:58 am

    Using WMI is the correct approach to the problem. Specifically, the Win32_QuickFixEngineering class is the one that you want.

    This should work just fine on Windows Vista. Your problem stems from the fact that starting with Windows Vista, the updates installed by Component Based Servicing (CBS) are not listed in the registry.

    Sample VBScript code:

    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
        & "{impersonationLevel=impersonate}!\\" _
        & strComputer & "\root\cimv2")
    Set colQuickFixes = objWMIService.ExecQuery _
        ("Select * from Win32_QuickFixEngineering")
    For Each objQuickFix in colQuickFixes
        Wscript.Echo "Description: " _
            & objQuickFix.Description
        Wscript.Echo "Hotfix ID: " & objQuickFix.HotFixID
    Next
    

    A Google search reveals that some kind individual has already written a complete VBScript to obtain this information. It even formats the output as a beautiful HTML file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I query for an accurate and localized list of Windows updates installed
How can i use opendir function to read the directory list of a remote
I can read unmanaged memory in C# using UnmanagedMemoryStream, but how can I do
How I can Read the RGB-Pixel by Pixel values from CGImagea also after how
I want to create a software which windows will detect it as a installed
I'm making an automated script to read a list from a site posting the
You can read this question where I ask about the best architecture for a
I can read settings like this, for example: final String mytest = System.getString(this.getContentResolver(), System.AIRPLANE_MODE_ON);
I can read XLS file with this code : string path =@c:\r\1.xlsx; OleDbConnection MyConnection
In main I can read my config file, and supply it as runReader (somefunc)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.