📎 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.
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.
Solution
How to find relevant KB (Knowledgebase) information within Windows Update.
Go to Windows Update
Search -> Windows Update:
Look and click on for "View installed updates":
Click on the installed update for additional information from the Microsoft Knowledgebase
The result should open your browser (example):
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.
Go to Windows Update
Search -> Windows Update:
Look and click on for "View installed updates":
Click on the installed update for additional information from the Microsoft Knowledgebase
The result should open your browser (example):
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.
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:
Look and click on for "View installed updates":
Click on the installed update for additional information from the Microsoft Knowledgebase
The result should open your browser (example):
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.
Go to Windows Update
Search -> Windows Update:
Look and click on for "View installed updates":
Click on the installed update for additional information from the Microsoft Knowledgebase
The result should open your browser (example):
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:
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:
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
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