📎 AI Summary:
The forum thread discusses how to find detailed information about Windows updates, with the original poster seeking clarification on what issues updates address. Answers include instructions on accessing update details via Windows Update and Microsoft Support, along with a PowerShell method to list installed updates with descriptions. Overall, the community provides helpful guidance, though the original poster notes difficulty in finding specific update information and expresses gratitude for the assistance.

dwinsorr

New Member
Member details
Joined
Jan 31, 2018
Messages
2
Thread Author #1
I have a large number of updates to install but I don't know what any of them address. I can not find any information anywhere, any help
 

Solution
How to find relevant KB (Knowledgebase) information within Windows Update.

Go to Windows Update

Search -> Windows Update:

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


Look and click on for "View installed updates":

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


Click on the installed update for additional information from the Microsoft Knowledgebase

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


The result should open your browser (example):

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


To access the Microsoft Knowledgebase outside of this, find the KB number for your update and go to:

Microsoft Support

Some early Windows Updates for Windows 10 may not contain detailed KB information. There was criticism about this and it has been corrected, for the most part.

Mike

Windows Forum Admin
Staff member
Premium Supporter
Member details
Joined
Jul 22, 2005
Messages
9,270
How to find relevant KB (Knowledgebase) information within Windows Update.

Go to Windows Update

Search -> Windows Update:

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


Look and click on for "View installed updates":

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


Click on the installed update for additional information from the Microsoft Knowledgebase

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


The result should open your browser (example):

An image from 'how to find out what issues window KB updates address'. Windows Update settings, status, history, and details of KB4056892 update fixes on Windows 10.


To access the Microsoft Knowledgebase outside of this, find the KB number for your update and go to:

Microsoft Support

Some early Windows Updates for Windows 10 may not contain detailed KB information. There was criticism about this and it has been corrected, for the most part.
 

Last edited by a moderator:
Solution

dwinsorr

New Member
Member details
Joined
Jan 31, 2018
Messages
2
Thread Author #3
How to find relevant KB (Knowledgebase) information within Windows Update.

Go to Windows Update

Search -> Windows Update:

View attachment 35805

Look and click on for "View installed updates":

View attachment 35806

Click on the installed update for additional information from the Microsoft Knowledgebase

View attachment 35807

The result should open your browser (example):

View attachment 35809

To access the Microsoft Knowledgebase outside of this, find the KB number for your update and go to:

Microsoft Support

Some early Windows Updates for Windows 10 may not contain detailed KB information. There was criticism about this and it has been corrected, for the most part.

Thanks a lot for the information, I didn't find what I was looking for but I modified link given to: Link Removed # of update minus KB. To find out the issues a update addressed I would type in the number of the update and hit enter. I am not very computer literate so I probably am going about this the hard way, I still appreciate your information, without it I would not have what I need. Thanks
 

Last edited by a moderator:

Neemobeer

Windows Forum Team
Staff member
Member details
Joined
Jul 4, 2015
Messages
8,995
For grins getting a description of installed updates without a browser (With powershell)

Open a powershell prompt and run the following
$wusession = New-Object -ComObject "Microsoft.Update.Session"
$wusearch = $wusession.CreateUpdateSearcher()
$results = $wusearch.Search("IsInstalled=1")
$results.Updates | Sort-Object LastDeploymentChangeTime -Descending | Format-List Title,Description,LastdeploymentChangeTime